In [6]:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from bertopic import BERTopic
from tabulate import tabulate
from sklearn.metrics.pairwise import cosine_similarity
plt.style.use('seaborn-v0_8-whitegrid')

companies = ["Acerinox", "ACS", "Bancosantander", "Bankinter", "BBVA", "Caixa", "Colonial", "Enagas", "Endesa", "Ferrovial", "Grifols", "IAG", "Iberdrola", "Inditex", 'Acciona', 'Arcelormittal', 'Bancosabadell', 'Cellnex', 'Fluidra', 'Indra', 'Logista', 'Melia', 'Merlin', 'Naturgy', 'Red', 'Repsol', 'Sacyr', 'Solaria', 'Telefonica']

Analysis¶

We carry out three types of analysis, all at company level, i.e., for each company:

  1. Best matching: We generate a set of queries to find the best match in a language set given a PR in the other language. More precisely, each PR in English is treated as a query and the search for the closest PR in the Spanish set. Then, the opposite is done, taking each PR in Spanish as a query, and searching for the closest match in English. The raw associations are found in the files called comparison_{company}_{direction}.xlsx, where the direction indicates which of the two languages is used as query. The first table below reports the average across all the PR of a given company.
  2. Topic modeling and comparison: We extract the top $n$ topics in the English and Spanish sets (in my exercise below, $n=10$). We then compute the distance between the topics in the two languages. More precisely, we first find the best match between each pair of topics and then we compute the average distance across the pairs of best matches.
  3. Topics for the PR with low similarity score. We select the Spanish PR whose similarity score with the closest English PR is in the bottom 20th percentile. For these low similarity PRs, we extract the main topics. That is, we want to identify which topics are discussed in Spanish but not in English.

Best Matching¶

The file below provides the average similarity across all the pairs, obtained as described above. In the folder results/best_matching, you find the details of each comparison. For the sake of clarity, I show below an example for Inditex.

In [2]:
df = pd.read_excel("results/avg_similarity_company_both.xlsx")
df
Out[2]:
company nr_en nr_es similarity_en_to_es similarity_es_to_en
0 Acerinox 229 236 0.933870 0.934255
1 ACS 318 323 0.969719 0.966951
2 Bancosantander 698 1237 0.738434 0.750511
3 Bankinter 612 613 0.951773 0.951053
4 BBVA 238 522 0.916734 0.787370
5 Caixa 645 2935 0.939889 0.795946
6 Colonial 190 190 1.000000 1.000000
7 Enagas 352 391 0.928380 0.924157
8 Endesa 149 145 0.837463 0.843049
9 Ferrovial 365 362 0.915678 0.915986
10 Grifols 257 253 0.918767 0.920675
11 IAG 219 235 0.908883 0.915402
12 Iberdrola 947 903 0.952832 0.953410
13 Inditex 154 154 0.938037 0.938037
14 Acciona 887 1074 0.930277 0.895565
15 Arcelormittal 447 192 0.778393 0.831066
16 Bancosabadell 294 770 0.941250 0.803138
17 Cellnex 248 239 0.629538 0.634449
18 Fluidra 154 157 0.934247 0.930480
19 Indra 921 1570 0.931471 0.864217
20 Logista 248 251 0.939693 0.939008
21 Melia 182 492 0.873721 0.793564
22 Merlin 81 113 0.946587 0.837842
23 Naturgy 23 537 0.877958 0.706508
24 Red 28 264 0.910985 0.737239
25 Repsol 112 409 0.825663 0.710682
26 Sacyr 243 244 0.940351 0.939357
27 Solaria 66 163 0.699370 0.630497
28 Telefonica 771 1837 0.927124 0.814919

Let us consider the case of Inditex. The average similarity value is obtained from the file below, where each row shows the best match between PR in the two languages. We also have the similarity score and the filenames of the two PRs. NOTE: Watch out for similarity scores of 1.0, since they are probably associated to errors. Two PRs in different languages should not give a score of 1.0, since a perfect translation does not exist. If we get a score of 1.0, we probably have an error (e.g., a duplicated PR.)

In [5]:
dfI = pd.read_excel("results/best_matching/comparison_Inditex_en2es.xlsx")
dfI.head(3)
Out[5]:
idx_query similarity query match idx_match query_filename match_filename
0 0 0.931580 1 dic 2014Zara opens a flagship on Shanghai's ... 1 dic 2014Zara abre una tienda emblemática en ... 0 data/raw/Inditex/eng/57f7be58-1389-4f00-b4c0-9... data/raw/Inditex/esp/57f7be58-1389-4f00-b4c0-9...
1 1 0.906590 1 jul 2015Inditex provides grant to Every Moth... 1 jul 2015Inditex y ‘Every Mother Counts' firm... 1 data/raw/Inditex/eng/a307c7fe-87e8-462f-a8f3-8... data/raw/Inditex/esp/a307c7fe-87e8-462f-a8f3-8...
2 2 0.895191 1 sept 2014Stradivarius opens its first UK sto... 1 sept 2014Stradivarius abre en Londres su pri... 2 data/raw/Inditex/eng/a2c6c52a-3fe9-486b-9a06-1... data/raw/Inditex/esp/a2c6c52a-3fe9-486b-9a06-1...

The plot below shows the variability of the similarity scores. This could be useful to identify companies with larger variability, as well as cases with low matching. For example, observe below:

  1. The case of Colonial, which is obviously wrong, since we have a perfect match of 100%. If you have a look at the original PRs, you will see what the problem is.
  2. The case of, e.g., Endesa vs. Inditex. While the former has large variability, indicating that quite often we don't find strong matches, the latter seems to correspond to good translations between english and spanish.

I suggest to use this plot to identify what and where to explore.

In [3]:
for i, company in enumerate(companies):
    dfI = pd.read_excel(f"results/best_matching/comparison_{company}_en2es.xlsx")
    dfI["company"] = company
    if i == 0:
        df = dfI[["company", "similarity"]]
    else:
        df = pd.concat([df, dfI[["company", "similarity"]]])

df.boxplot(by="company", figsize=(15,5))
plt.title("Similarity by company EN -> ES")
plt.xticks(rotation=45);
In [4]:
for i, company in enumerate(companies):
    dfI = pd.read_excel(f"results/best_matching/comparison_{company}_es2en.xlsx")
    dfI["company"] = company
    if i == 0:
        df = dfI[["company", "similarity"]]
    else:
        df = pd.concat([df, dfI[["company", "similarity"]]])

df.boxplot(by="company", figsize=(15,5))
plt.title("Similarity by company ES -> EN")
plt.xticks(rotation=45);

Topics Modeling¶

Here we analyze the distribution of similarity scores for all the topics, and not just the PR (as above).

In [5]:
for i, company in enumerate(companies):
    dfI = pd.read_excel(f"results/topics/topics_match_{company}.xlsx")
    dfI["company"] = company
    if i == 0:
        df = dfI[["company", "similarity"]]
    else:
        df = pd.concat([df, dfI[["company", "similarity"]]])

df.boxplot(by="company", figsize=(15,5))
plt.title("Similarity of topics between EN and ES across companies")
plt.xticks(rotation=45);
df.groupby("company").similarity.mean().reset_index()
Out[5]:
company similarity
0 ACS 0.723991
1 Acciona 0.649052
2 Acerinox 0.871268
3 Arcelormittal 0.721237
4 BBVA 0.708271
5 Bancosabadell 0.749090
6 Bancosantander 0.639961
7 Bankinter 0.855400
8 Caixa 0.797540
9 Cellnex 0.701545
10 Colonial 0.825711
11 Enagas 0.795909
12 Endesa 0.794614
13 Ferrovial 0.778183
14 Fluidra 0.810223
15 Grifols 0.753697
16 IAG 0.775684
17 Iberdrola 0.785209
18 Inditex 0.769948
19 Indra 0.702316
20 Logista 0.785620
21 Melia 0.823091
22 Merlin 0.828489
23 Naturgy 0.822847
24 Red 0.803568
25 Repsol 0.724940
26 Sacyr 0.826867
27 Solaria 0.678102
28 Telefonica 0.641181

Full List of Matches Across Topics¶

Below, I print out the content of each file of the type topics_match_company.xlsx, to save you the time to open each excel file.

In [7]:
for i, company in enumerate(companies):
    dfI = pd.read_excel(f"results/topics/topics_match_{company}.xlsx")
    print(f"\n\nCompany '{company}'")
    print("-"*len(f"Company '{company}'"))
    #print(dfI.to_markdown(index=False))
    print(tabulate(dfI, headers='keys', tablefmt='fancy_grid'))

Company 'Acerinox'
------------------
╒════╤═════════╤═════════╤═══════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                   │   Topic.1 │   Count.1 │ Best Match ES                                  │   similarity │
╞════╪═════════╪═════════╪═══════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    1405 │ 0_euros_steel_excellence_directors        │         0 │      1245 │ 0_trimestre_millones_euros_producción          │     0.874109 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     169 │ 1_dividend_share_payment_shareholders     │         1 │       268 │ 1_dividendo_accionistas_pago_sostenibles       │     0.936811 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │      97 │ 2_awards_category_quality_donations       │         8 │        14 │ 8_safety_award_accidentes_seguridad            │     0.75243  │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      33 │ 3_feynman_replaces_velázquez_shareholder  │         6 │        28 │ 6_feynman_director_jefe_accionista             │     0.922939 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      32 │ 4_alloys_corrosion_resistance_cobalt      │         2 │        77 │ 2_acero_circular_reciclar_reciclado            │     0.862848 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      27 │ 5_malaysia_thailand_philippines_singapore │         5 │        29 │ 5_malasia_bahru_asiático_singapur              │     0.930824 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      16 │ 6_reuse_recycle_circular_fulfils          │         2 │        77 │ 2_acero_circular_reciclar_reciclado            │     0.86556  │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      14 │ 7_gas_electricity_chemicals_diesel        │         4 │        32 │ 4_energéticos_reducciones_emisiones_electrodos │     0.802115 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      12 │ 8_water_swimming_olympic_returning        │         7 │        16 │ 7_agua_acumulado_bahía_facilitarán             │     0.893774 │
╘════╧═════════╧═════════╧═══════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════════════════╧══════════════╛


Company 'ACS'
-------------
╒════╤═════════╤═════════╤══════════════════════════════════════════════╤═══════════╤═══════════╤═════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                      │   Topic.1 │   Count.1 │ Best Match ES                       │   similarity │
╞════╪═════════╪═════════╪══════════════════════════════════════════════╪═══════════╪═══════════╪═════════════════════════════════════╪══════════════╡
│  0 │       0 │    4616 │ 0_contract_mining_profit_company             │         0 │      4928 │ 0_australia_beneficio_acs_services  │     0.890437 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  1 │       1 │     319 │ 1_traffic_amsterdam_roads_maintenance        │         5 │        59 │ 5_montreal_canadá_vancouver_tráfico │     0.687183 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  2 │       2 │     206 │ 2_bond_bank_dividend_rate                    │         0 │      4928 │ 0_australia_beneficio_acs_services  │     0.555275 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  3 │       3 │     183 │ 3_europe_results_backlog_euro                │         0 │      4928 │ 0_australia_beneficio_acs_services  │     0.800355 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  4 │       4 │     109 │ 4_scheduled_early_mid_completion             │         0 │      4928 │ 0_australia_beneficio_acs_services  │     0.681471 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  5 │       5 │      81 │ 5_water_panama_desalination_wastewater       │         6 │        28 │ 6_agua_water_aguas_indowater        │     0.894585 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  6 │       6 │      38 │ 6_leader_market_australia_cimic              │         0 │      4928 │ 0_australia_beneficio_acs_services  │     0.773824 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  7 │       7 │      34 │ 7_domestic_represented_condolences_affection │         0 │      4928 │ 0_australia_beneficio_acs_services  │     0.672615 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  8 │       8 │      13 │ 8_trusts_turner__                            │         0 │      4928 │ 0_australia_beneficio_acs_services  │     0.560174 │
╘════╧═════════╧═════════╧══════════════════════════════════════════════╧═══════════╧═══════════╧═════════════════════════════════════╧══════════════╛


Company 'Bancosantander'
------------------------
╒════╤═════════╤═════════╤══════════════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                          │   Topic.1 │   Count.1 │ Best Match ES                                 │   similarity │
╞════╪═════════╪═════════╪══════════════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    7923 │ 0_million_universities_customers_banking         │         0 │     16697 │ 0_www_universidades_twitter_gruposantander    │     0.893029 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     179 │ 1_disabilities_disability_autistic_autism        │         2 │       161 │ 2_chile_alzheimer_niños_angelini              │     0.647822 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     112 │ 2_building_painting_painter_art                  │         0 │     16697 │ 0_www_universidades_twitter_gruposantander    │     0.601907 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      95 │ 3_chile_uruguay_tourism_peru                     │         1 │       165 │ 1_chile_colombia_perú_venezuela               │     0.921389 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      91 │ 4_plastic_recycled_waste_packaging               │         3 │       134 │ 3_especies_conservación_especie_biodiversidad │     0.499876 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      66 │ 5_inflation_macroeconomic_recession_inflationary │         0 │     16697 │ 0_www_universidades_twitter_gruposantander    │     0.445377 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      57 │ 6_bike_cyclists_bikes_cycling                    │         5 │       107 │ 5_spin2016_spin_evento_aeroespacial           │     0.444425 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      24 │ 7_tamaño_jpeg_mb_1920x1280                       │         0 │     16697 │ 0_www_universidades_twitter_gruposantander    │     0.697916 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      11 │ 8_ecocook_catering_restaurants_iberia            │         0 │     16697 │ 0_www_universidades_twitter_gruposantander    │     0.607911 │
╘════╧═════════╧═════════╧══════════════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════════╧══════════════╛


Company 'Bankinter'
-------------------
╒════╤═════════╤═════════╤══════════════════════════════════════════════════════╤═══════════╤═══════════╤══════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                              │   Topic.1 │   Count.1 │ Best Match ES                                │   similarity │
╞════╪═════════╪═════════╪══════════════════════════════════════════════════════╪═══════════╪═══════════╪══════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    6123 │ 0_euros_banking_billion_capital                      │         0 │      5814 │ 0_millones_euros_banco_bankinter             │     0.924455 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     203 │ 1_disabilities_discapacidad_accessibility_solidarity │         0 │      5814 │ 0_millones_euros_banco_bankinter             │     0.558996 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     150 │ 2_energy_carbon_hydrogen_buildings                   │         3 │       109 │ 3_carbono_emisiones_renovables_energética    │     0.948734 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  3 │       3 │     132 │ 3_musical_coro_flamenco_orquesta                     │         1 │       184 │ 1_orquesta_musicales_coro_espectáculo        │     0.918008 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      83 │ 4_mobile_móvil_smartphones_device                    │         2 │       125 │ 2_apple_samsung_móviles_pay                  │     0.851395 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      62 │ 5_hoteles_hotels_hotel_visa                          │         6 │        34 │ 6_hoteles_hotels_hoteleros_innside           │     0.971611 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      57 │ 6_popcoin_portfolios_roboadvisor_adviser             │         4 │        79 │ 4_popcoin_roboadvisor_contraseña_otp         │     0.886835 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      49 │ 7_notifications_password_signatures_fingerprint      │         4 │        79 │ 4_popcoin_roboadvisor_contraseña_otp         │     0.661295 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      13 │ 8_packaging_recycled_plastic_plastics                │         8 │        11 │ 8_reciclaje_plástico_reciclado_reutilización │     0.977273 │
╘════╧═════════╧═════════╧══════════════════════════════════════════════════════╧═══════════╧═══════════╧══════════════════════════════════════════════╧══════════════╛


Company 'BBVA'
--------------
╒════╤═════════╤═════════╤═══════════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                       │   Topic.1 │   Count.1 │ Best Match ES                              │   similarity │
╞════╪═════════╪═════════╪═══════════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════════════╪══════════════╡
│  0 │       0 │   12059 │ 0_income_results_financial_profit             │         0 │     32879 │ 0_resultados_millones_grupo_2016           │     0.851484 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     604 │ 1_renewable_sustainable_climate_environmental │         0 │     32879 │ 0_resultados_millones_grupo_2016           │     0.628665 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     416 │ 2_drones_robots_drone_aircraft                │         2 │        70 │ 2_holograma_holografía_hologramas_hologram │     0.404389 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  3 │       3 │     359 │ 3_bitcoin_currencies_blockchain_crypto        │         1 │       124 │ 1_bitcoin_blockchain_bitcoins_moneda       │     0.898283 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  4 │       4 │     173 │ 4_3d_printing_arm_printers                    │         2 │        70 │ 2_holograma_holografía_hologramas_hologram │     0.587492 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  5 │       5 │     137 │ 5_peso_colombia_peru_venezuela                │         0 │     32879 │ 0_resultados_millones_grupo_2016           │     0.684289 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      42 │ 6_unicorns_bubble_unicorn_nuggets             │         0 │     32879 │ 0_resultados_millones_grupo_2016           │     0.555784 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      33 │ 7_corona_coronavirus_vaccines_rebounded       │         3 │        69 │ 3_vacunas_vacunación_coronavirus_contagios │     0.813402 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      29 │ 8_diabetes_glucose_insulin_diabetics          │         4 │        43 │ 4_reloj_diabetes_diabéticos_glucosa        │     0.950647 │
╘════╧═════════╧═════════╧═══════════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════════════╧══════════════╛


Company 'Caixa'
---------------
╒════╤═════════╤═════════╤══════════════════════════════════════════════╤═══════════╤═══════════╤══════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                      │   Topic.1 │   Count.1 │ Best Match ES                            │   similarity │
╞════╪═════════╪═════════╪══════════════════════════════════════════════╪═══════════╪═══════════╪══════════════════════════════════════════╪══════════════╡
│  0 │       0 │   97937 │ 0_banking_customers_financial_spain          │         0 │    397707 │ 0_clientes_empresas_banca_millones       │     0.960863 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  1 │       1 │      98 │ 1_vaccination_vaccine_children_vaccinated    │         5 │        39 │ 5_coronavirus_liderazgo_crisis_euromoney │     0.498524 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  2 │       2 │      97 │ 2_capitalisation_eurozone_euromoneyas_market │         0 │    397707 │ 0_clientes_empresas_banca_millones       │     0.748417 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  3 │       3 │      50 │ 3_ibex35_ibex_bond_nations                   │         8 │        19 │ 8_citywire_asset_management_categoría    │     0.85064  │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  4 │       4 │      27 │ 4_boosts_factoring_capacity_sales            │         0 │    397707 │ 0_clientes_empresas_banca_millones       │     0.775846 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  5 │       5 │      27 │ 5_477_coupon_set_1q13                        │         7 │        22 │ 7_icex_niños_800_récord                  │     0.774115 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  6 │       6 │      19 │ 6_media_2017_western_digital                 │         8 │        19 │ 8_citywire_asset_management_categoría    │     0.872866 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  7 │       7 │      13 │ 7_roadshow_cities_carried_present            │         8 │        19 │ 8_citywire_asset_management_categoría    │     0.856638 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  8 │       8 │      12 │ 8_mycard_relationship_product_customers      │         0 │    397707 │ 0_clientes_empresas_banca_millones       │     0.839947 │
╘════╧═════════╧═════════╧══════════════════════════════════════════════╧═══════════╧═══════════╧══════════════════════════════════════════╧══════════════╛


Company 'Colonial'
------------------
╒════╤═════════╤═════════╤════════════════════════════════════════════════════╤═══════════╤═══════════╤══════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                            │   Topic.1 │   Count.1 │ Best Match ES                                    │   similarity │
╞════╪═════════╪═════════╪════════════════════════════════════════════════════╪═══════════╪═══════════╪══════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    3276 │ 0_colonial_portfolio_millones_rental               │         0 │      2897 │ 0_barcelona_portfolio_madrid_capital             │     0.949616 │
├────┼─────────┼─────────┼────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     212 │ 1_centros_floors_parques_plaza                     │         4 │        74 │ 4_space_floors_plazas_area                       │     0.891542 │
├────┼─────────┼─────────┼────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │      81 │ 2_dividendo_complementario_share_dividend          │         1 │       300 │ 1_dividendo_share_dividend_shareholder           │     0.919926 │
├────┼─────────┼─────────┼────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      59 │ 3_energy_certificates_sustainability_transparencia │         3 │       111 │ 3_energy_sustainability_certificates_certificate │     0.924446 │
├────┼─────────┼─────────┼────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      55 │ 4_digital_mobile_metaprop_iniciativas              │         6 │        46 │ 6_fecha_plazo_periodo_suscripción                │     0.704464 │
├────┼─────────┼─────────┼────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      40 │ 5_disposals_disposal_assets_divestments            │         2 │       293 │ 2_contracts_signed_euros_corresponding           │     0.691217 │
├────┼─────────┼─────────┼────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      26 │ 6_carbon_emissions_2050_carbono                    │         7 │        20 │ 7_carbon_emissions_carbono_2050                  │     0.992053 │
├────┼─────────┼─────────┼────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      21 │ 7_personal_directivos__                            │         2 │       293 │ 2_contracts_signed_euros_corresponding           │     0.649461 │
├────┼─────────┼─────────┼────────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      17 │ 8_balance_structure_bps_488m                       │         5 │        48 │ 5_investment1_proyectos_cbd100_factorygla        │     0.708674 │
╘════╧═════════╧═════════╧════════════════════════════════════════════════════╧═══════════╧═══════════╧══════════════════════════════════════════════════╧══════════════╛


Company 'Enagas'
----------------
╒════╤═════════╤═════════╤════════════════════════════════════════════════╤═══════════╤═══════════╤══════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                        │   Topic.1 │   Count.1 │ Best Match ES                                │   similarity │
╞════╪═════════╪═════════╪════════════════════════════════════════════════╪═══════════╪═══════════╪══════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    3911 │ 0_demand_gas_709_sustainability                │         0 │      5404 │ 0_gas_demanda_hidrógeno_infraestructuras     │     0.929933 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  1 │       1 │    1094 │ 1_hydrogen_renewable_emissions_methane         │         0 │      5404 │ 0_gas_demanda_hidrógeno_infraestructuras     │     0.807345 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     175 │ 2_directors_board_director_chairman            │         0 │      5404 │ 0_gas_demanda_hidrógeno_infraestructuras     │     0.499711 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  3 │       3 │     154 │ 3_bunkering_ports_ships_barcelona              │         0 │      5404 │ 0_gas_demanda_hidrógeno_infraestructuras     │     0.708017 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  4 │       4 │     105 │ 4_peru_mexico_chile_perú                       │         3 │        95 │ 3_chile_méxico_quintero_perú                 │     0.966581 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      84 │ 5_biogas_waste_biomethane_bioengas             │         1 │       296 │ 1_biogás_biometano_residuos_renovables       │     0.964572 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      59 │ 6_reforestation_rural_co₂_spain                │         5 │        31 │ 5_rural_reforestación_compensación_hectáreas │     0.942413 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      50 │ 7_families_coronavirus_vulnerable_disabilities │         0 │      5404 │ 0_gas_demanda_hidrógeno_infraestructuras     │     0.635494 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      46 │ 8_waste_liquefied_circular_straw               │         5 │        31 │ 5_rural_reforestación_compensación_hectáreas │     0.709119 │
╘════╧═════════╧═════════╧════════════════════════════════════════════════╧═══════════╧═══════════╧══════════════════════════════════════════════╧══════════════╛


Company 'Endesa'
----------------
╒════╤═════════╤═════════╤══════════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                      │   Topic.1 │   Count.1 │ Best Match ES                                         │   similarity │
╞════╪═════════╪═════════╪══════════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    1882 │ 0_companies_distribution_foundation_gas      │         0 │      2129 │ 0_power_green_servicios_distribución                  │     0.881859 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     417 │ 1_charging_electric_mobility_stations        │         1 │       182 │ 1_transporte_movilidad_autobuses_vehículos            │     0.794887 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     320 │ 2_wind_carbon_co2_solar                      │         0 │      2129 │ 0_power_green_servicios_distribución                  │     0.771226 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │     145 │ 3_piano_music_madrid_concerts                │         4 │        53 │ 4_castilla_solares_plantas_león                       │     0.678855 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      50 │ 4_species_biodiversity_breeding_conservation │         3 │        68 │ 3_biodiversidad_especie_conservación_agrícola         │     0.930464 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      49 │ 5_recycling_footwear_fibreglass_composite    │         7 │        18 │ 7_fibra_materiales_reciclado_reutilización            │     0.860851 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      33 │ 6_eruption_palma_lava_volcanic               │         4 │        53 │ 4_castilla_solares_plantas_león                       │     0.718861 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      27 │ 7_drones_sensors_cameras_surveillance        │         2 │       145 │ 2_modular_consumidores_digitalización_electrificación │     0.789733 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      24 │ 8_conditioning_cooling_emissions_efficiency  │         0 │      2129 │ 0_power_green_servicios_distribución                  │     0.72479  │
╘════╧═════════╧═════════╧══════════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════════════════╧══════════════╛


Company 'Ferrovial'
-------------------
╒════╤═════════╤═════════╤════════════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                        │   Topic.1 │   Count.1 │ Best Match ES                                  │   similarity │
╞════╪═════════╪═════════╪════════════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    3598 │ 0_euro_revenues_billion_services               │         0 │      3668 │ 0_euros_millones_infraestructuras_ferrovial    │     0.914351 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     194 │ 1_waste_sewage_recycling_supply                │         7 │        13 │ 7_biogás_biometano_co2_anaeróbica              │     0.684172 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     138 │ 2_bridges_tunnels_meters_tunnel                │         4 │        74 │ 4_puentes_kilómetros_intersecciones_viaductos  │     0.949873 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │     114 │ 3_digital_opens_virtual_microsoft              │         0 │      3668 │ 0_euros_millones_infraestructuras_ferrovial    │     0.66217  │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      90 │ 4_lighting_fusionforenergy_transmission_safety │         1 │       192 │ 1_mantenimiento_carreteras_sheffield_británica │     0.68601  │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      57 │ 5_climate_emissions_carbon_reduction           │         7 │        13 │ 7_biogás_biometano_co2_anaeróbica              │     0.705583 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      35 │ 6_masks_ffp2_vaccine_equipment                 │         6 │        14 │ 6_vacuna_vacunas_virus_proteínas               │     0.782353 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      22 │ 7_foodbank_meals_banks_hygiene                 │         1 │       192 │ 1_mantenimiento_carreteras_sheffield_británica │     0.659926 │
├────┼─────────┼─────────┼────────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      12 │ 8_photographer_exhibition_painter_photography  │         5 │        22 │ 5_fotógrafo_balcones_retrato_vision            │     0.959212 │
╘════╧═════════╧═════════╧════════════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════════════════╧══════════════╛


Company 'Grifols'
-----------------
╒════╤═════════╤═════════╤═════════════════════════════════════════════╤═══════════╤═══════════╤═════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                     │   Topic.1 │   Count.1 │ Best Match ES                                   │   similarity │
╞════╪═════════╪═════════╪═════════════════════════════════════════════╪═══════════╪═══════════╪═════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │   10434 │ 0_euros_company_sales_report                │         0 │     10793 │ 0_euros_grifols_compañía_mercado                │     0.91288  │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     988 │ 1_transfusion_virus_immunoglobulin_procleix │         1 │        71 │ 1_beta_amiloide_cerebro_polineuropatía          │     0.701905 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     175 │ 2_pacific_egyptian_diversification_china    │         0 │     10793 │ 0_euros_grifols_compañía_mercado                │     0.678437 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      82 │ 3_pulmonary_emphysema_transplant_fibrosis   │         2 │        59 │ 2_pulmonar_antitripsina_respiratorias_hemofilia │     0.89507  │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      46 │ 4_page_página__                             │         3 │        53 │ 3_página_page_página3_para                      │     0.990754 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      31 │ 5_aged_alzheimer_elderly_population         │         1 │        71 │ 1_beta_amiloide_cerebro_polineuropatía          │     0.648436 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      27 │ 6_emissions_energy_co2_waste                │         0 │     10793 │ 0_euros_grifols_compañía_mercado                │     0.591069 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      17 │ 7_canadian_canada_sufficiency_blood         │         0 │     10793 │ 0_euros_grifols_compañía_mercado                │     0.603585 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      12 │ 8_germany_berlin_headquarters_owns          │         0 │     10793 │ 0_euros_grifols_compañía_mercado                │     0.761138 │
╘════╧═════════╧═════════╧═════════════════════════════════════════════╧═══════════╧═══════════╧═════════════════════════════════════════════════╧══════════════╛


Company 'IAG'
-------------
╒════╤═════════╤═════════╤══════════════════════════════════════════════════════╤═══════════╤═══════════╤═════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                              │   Topic.1 │   Count.1 │ Best Match ES                       │   similarity │
╞════╪═════════╪═════════╪══════════════════════════════════════════════════════╪═══════════╪═══════════╪═════════════════════════════════════╪══════════════╡
│  0 │       0 │    5299 │ 0_pts_revenue_million_costs                          │         0 │      6184 │ 0_resultados_euros_ingresos_gastos  │     0.920135 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  1 │       1 │     277 │ 1_routes_dublin_flights_heathrow                     │         1 │       400 │ 1_madrid_lse_15_11                  │     0.638263 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  2 │       2 │     151 │ 2_oneworld_routes_airlines_colombia                  │         6 │        53 │ 6_brasil_méxico_argentina_venezuela │     0.878978 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  3 │       3 │     147 │ 3_airbus_aircraft_orders_fleet                       │         1 │       400 │ 1_madrid_lse_15_11                  │     0.664326 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  4 │       4 │     109 │ 4_carbon_emissions_aviation_sustainable              │         3 │       116 │ 3_emisiones_carbono_aviación_co2    │     0.988615 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  5 │       5 │      40 │ 5_days_calendar_completion_quotation                 │         1 │       400 │ 1_madrid_lse_15_11                  │     0.763916 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  6 │       6 │      29 │ 6_virus_exacerbated_pandemic_covid                   │         1 │       400 │ 1_madrid_lse_15_11                  │     0.7108   │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  7 │       7 │      22 │ 7_substitution_refer_translation_londonstockexchange │         1 │       400 │ 1_madrid_lse_15_11                  │     0.702484 │
├────┼─────────┼─────────┼──────────────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────┼──────────────┤
│  8 │       8 │      14 │ 8_aircraft_old_legacy_retired                        │         1 │       400 │ 1_madrid_lse_15_11                  │     0.713644 │
╘════╧═════════╧═════════╧══════════════════════════════════════════════════════╧═══════════╧═══════════╧═════════════════════════════════════╧══════════════╛


Company 'Iberdrola'
-------------------
╒════╤═════════╤═════════╤════════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                    │   Topic.1 │   Count.1 │ Best Match ES                                     │   similarity │
╞════╪═════════╪═════════╪════════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │   12592 │ 0_billion_energy_climate_sustainable       │         0 │      9701 │ 0_millones_energía_información_sostenible         │     0.947132 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     126 │ 1_olympic_handball_gymnastics_badminton    │         8 │        34 │ 8_tenis_boxeo_voleibol_balonmano                  │     0.9033   │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │      70 │ 2_blockchain_detection_robots_traceability │         6 │        45 │ 6_robot_discapacidad_drones_3d                    │     0.84626  │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      62 │ 3_heineken_brands_spain_beer               │         0 │      9701 │ 0_millones_energía_información_sostenible         │     0.64247  │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      59 │ 4_battery_storage_ion_lithium              │         1 │       928 │ 1_hidrógeno_verde_fotovoltaica_aerogeneradores    │     0.8135   │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      40 │ 5_circular_waste_recycling_recycled        │         7 │        36 │ 7_circular_reciclaje_residuos_energyloop          │     0.940967 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      36 │ 6_cancer_aecc_cáncer_campañas              │         4 │        99 │ 4_cáncer_coronavirus_hospitales_pandemia          │     0.764289 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      33 │ 7_honey_bees_hives_beehives                │         3 │       149 │ 3_biodiversidad_conservación_especies_ecosistemas │     0.626255 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      18 │ 8_tonnes_weight_weighs_jacket              │         0 │      9701 │ 0_millones_energía_información_sostenible         │     0.582712 │
╘════╧═════════╧═════════╧════════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════════════╧══════════════╛


Company 'Inditex'
-----------------
╒════╤═════════╤═════════╤═══════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                   │   Topic.1 │   Count.1 │ Best Match ES                          │   similarity │
╞════╪═════════╪═════════╪═══════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════════╪══════════════╡
│  0 │       0 │    1576 │ 0_store_spain_stores_opened               │         0 │      1397 │ 0_dutti_bear_tienda_euros              │     0.873072 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  1 │       1 │     231 │ 1_markets_online_stores_expand            │         1 │       190 │ 1_mercados_tiendas_online_turquía      │     0.947808 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  2 │       2 │     162 │ 2_textile_materials_garments_fiber        │         5 │        34 │ 5_textil_fibras_fibra_fiber            │     0.919047 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  3 │       3 │      99 │ 3_lighting_building_architectural_glass   │         0 │      1397 │ 0_dutti_bear_tienda_euros              │     0.604459 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  4 │       4 │      78 │ 4_refugees_migrants_bangladesh_migration  │         2 │       114 │ 2_camboya_refugiados_rurales_bangladés │     0.876375 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  5 │       5 │      46 │ 5_director_appointed_directors_managing   │         0 │      1397 │ 0_dutti_bear_tienda_euros              │     0.549523 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  6 │       6 │      36 │ 6_rfid_radio_frequency_overboard          │         8 │        11 │ 8_música_conciertos_backstage_dj       │     0.568484 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  7 │       7 │      19 │ 7_yoga_athleisure_sessions_sportswear     │         6 │        16 │ 6_yoga_sesiones_fitness_athleisure     │     0.963837 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  8 │       8 │      13 │ 8_malnutrition_children_severe_childbirth │         2 │       114 │ 2_camboya_refugiados_rurales_bangladés │     0.62693  │
╘════╧═════════╧═════════╧═══════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════════╧══════════════╛


Company 'Acciona'
-----------------
╒════╤═════════╤═════════╤════════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                    │   Topic.1 │   Count.1 │ Best Match ES                              │   similarity │
╞════╪═════════╪═════════╪════════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    8074 │ 0_plant_project_capacity_renewable         │         0 │      8633 │ 0_millones_energía_euros_agua              │     0.91267  │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     167 │ 1_charging_battery_batteries_storage       │         1 │       339 │ 1_aerogeneradores_windpower_turbinas_rotor │     0.623106 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     128 │ 2_airport_terminal_airlines_airports       │         4 │       163 │ 4_aeropuerto_terminal_aeropuertos_airport  │     0.984455 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  3 │       3 │     123 │ 3_projection_audiovisual_music_audio       │         0 │      8633 │ 0_millones_energía_euros_agua              │     0.576481 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  4 │       4 │     115 │ 4_scooters_motorcycles_scooter_motosharing │         1 │       339 │ 1_aerogeneradores_windpower_turbinas_rotor │     0.45678  │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      32 │ 5_salmon_fish_sea_plastics                 │         0 │      8633 │ 0_millones_energía_euros_agua              │     0.584823 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      25 │ 6_3d_printing_in3dustry_manufacturing      │         0 │      8633 │ 0_millones_energía_euros_agua              │     0.614494 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      23 │ 7_lighting_candles_lamps_flashlights       │         0 │      8633 │ 0_millones_energía_euros_agua              │     0.54971  │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      15 │ 8_dubai_arab_kuwait_gulf                   │         0 │      8633 │ 0_millones_energía_euros_agua              │     0.538947 │
╘════╧═════════╧═════════╧════════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════════════╧══════════════╛


Company 'Arcelormittal'
-----------------------
╒════╤═════════╤═════════╤════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                │   Topic.1 │   Count.1 │ Best Match ES                             │   similarity │
╞════╪═════════╪═════════╪════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════╪══════════════╡
│  0 │       0 │   11554 │ 0_steels_billion_steel_production      │         5 │        78 │ 5_xcarb_innovación_catalyst_breakthrough  │     0.808842 │
├────┼─────────┼─────────┼────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  1 │       1 │     446 │ 1_com_corporate_icon_releases          │         1 │       179 │ 1_traducción_español_documento_comunicado │     0.747375 │
├────┼─────────┼─────────┼────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  2 │       2 │     222 │ 2_executive_president_chief_appointed  │         1 │       179 │ 1_traducción_español_documento_comunicado │     0.626924 │
├────┼─────────┼─────────┼────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  3 │       3 │      56 │ 3_dividend_dividends_schedule_calendar │         0 │      2052 │ 0_información_millones_trimestre_2021     │     0.742728 │
├────┼─────────┼─────────┼────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  4 │       4 │      39 │ 4_waste_carbon_biomass_gases           │         3 │       114 │ 3_carbon_gases_co2_carbono                │     0.925239 │
├────┼─────────┼─────────┼────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  5 │       5 │      28 │ 5_ebola_outbreak_liberia_virus         │         1 │       179 │ 1_traducción_español_documento_comunicado │     0.651396 │
├────┼─────────┼─────────┼────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  6 │       6 │      26 │ 6_italy___                             │         1 │       179 │ 1_traducción_español_documento_comunicado │     0.525969 │
├────┼─────────┼─────────┼────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  7 │       7 │      21 │ 7_audited_numbers_release_press        │         6 │        78 │ 6_000_teléfono_bonos_correo               │     0.759317 │
├────┼─────────┼─────────┼────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  8 │       8 │      19 │ 8_bidding_offer_purchase_offers        │         6 │        78 │ 6_000_teléfono_bonos_correo               │     0.703345 │
╘════╧═════════╧═════════╧════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════╧══════════════╛


Company 'Bancosabadell'
-----------------------
╒════╤═════════╤═════════╤══════════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                      │   Topic.1 │   Count.1 │ Best Match ES                      │   similarity │
╞════╪═════════╪═════════╪══════════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════╪══════════════╡
│  0 │       0 │    3198 │ 0_euros_ratio_amounted_increased             │         0 │      5569 │ 0_millones_euros_trimestre_banco   │     0.861547 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────┼──────────────┤
│  1 │       1 │     153 │ 1_sustainability_sustainable_climate_carbon  │         3 │        95 │ 3_emisiones_renovables_carbono_co2 │     0.837772 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────┼──────────────┤
│  2 │       2 │     115 │ 2_mobile_app_contactless_wallet              │         2 │       278 │ 2_móvil_samsung_pago_usuarios      │     0.960718 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────┼──────────────┤
│  3 │       3 │     108 │ 3_channels_remote_services_users             │         2 │       278 │ 2_móvil_samsung_pago_usuarios      │     0.730496 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────┼──────────────┤
│  4 │       4 │      72 │ 4_cancer_cells_biomedical_molecular          │         4 │        67 │ 4_cáncer_genoma_células_tumoral    │     0.938223 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────┼──────────────┤
│  5 │       5 │      61 │ 5_barcelona_cards_club_tournament            │         0 │      5569 │ 0_millones_euros_trimestre_banco   │     0.732108 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────┼──────────────┤
│  6 │       6 │      21 │ 6_restoration_photographs_images_documentary │         0 │      5569 │ 0_millones_euros_trimestre_banco   │     0.584278 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────┼──────────────┤
│  7 │       7 │      18 │ 7_brain_sensory_alzheimer_developmental      │         4 │        67 │ 4_cáncer_genoma_células_tumoral    │     0.531325 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────┼──────────────┤
│  8 │       8 │      13 │ 8_neutron_stars_magnetic_magnetars           │         3 │        95 │ 3_emisiones_renovables_carbono_co2 │     0.565345 │
╘════╧═════════╧═════════╧══════════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════╧══════════════╛


Company 'Cellnex'
-----------------
╒════╤═════════╤═════════╤═════════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                     │   Topic.1 │   Count.1 │ Best Match ES                                 │   similarity │
╞════╪═════════╪═════════╪═════════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    2046 │ 0_contact_portugal_services_collaborators   │         0 │      4460 │ 0_infraestructuras_servicios_telecom_euros    │     0.785625 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     119 │ 1_pharma_pharmacies_hospitals_vaccines      │         4 │        44 │ 4_hospital_celular_inmunoterapia_linfocitos   │     0.827581 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     116 │ 2_ambient_packaging_integra2_sustainable    │         0 │      4460 │ 0_infraestructuras_servicios_telecom_euros    │     0.711794 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      96 │ 3_vehicles_cyclists_pedestrians_traffic     │         3 │       106 │ 3_vehículos_aparcamientos_parcmotor_movilidad │     0.885965 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      70 │ 4_rare_cancer_dent_foundation               │         7 │        20 │ 7_coronavirus_crisis_continuidad_precedentes  │     0.61867  │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      44 │ 5_sailing_trophy_j80_boats                  │         6 │        24 │ 6_holanda_italia_roundtable_malta             │     0.575782 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      39 │ 6_tobacco_tobacconists_pharma_italy         │         6 │        24 │ 6_holanda_italia_roundtable_malta             │     0.61464  │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      36 │ 7_thermal_traceability_isothermal_packaging │         2 │       175 │ 2_computing_sensores_datos_intel              │     0.671526 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      11 │ 8_hope_motivate_life_emotional              │         7 │        20 │ 7_coronavirus_crisis_continuidad_precedentes  │     0.622324 │
╘════╧═════════╧═════════╧═════════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════════╧══════════════╛


Company 'Fluidra'
-----------------
╒════╤═════════╤═════════╤════════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                    │   Topic.1 │   Count.1 │ Best Match ES                                 │   similarity │
╞════╪═════════╪═════════╪════════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════════╪══════════════╡
│  0 │       0 │     739 │ 0_eloi_europe_executive_growth             │         0 │       802 │ 0_española_ventas_multinacional_agua          │     0.929814 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     186 │ 1_euros_profit_cash_debt                   │         2 │        57 │ 2_deuda_dividendo_ratio_dividendos            │     0.917005 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     150 │ 2_swimming_olympic_competitions_diving     │         4 │        54 │ 4_skypool_paneles_piscina_calentamiento       │     0.861939 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  3 │       3 │     138 │ 3_director_directors_board_appointed       │         0 │       802 │ 0_española_ventas_multinacional_agua          │     0.679883 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      32 │ 4_students_university_scholarship_equality │         0 │       802 │ 0_española_ventas_multinacional_agua          │     0.681477 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      30 │ 5_irrigation_vision_emirates_arab          │         7 │        17 │ 7_egipto_árabes_jordania_israel               │     0.827036 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      30 │ 6_practice_outdoor_beds_massage            │         1 │       127 │ 1_equipamiento_wellness_kerex_piscina         │     0.787172 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      29 │ 7_disinfection_virus_safe_coronavirus      │         8 │        13 │ 8_virus_coronavirus_infectados_desinfectantes │     0.809919 │
├────┼─────────┼─────────┼────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      16 │ 8_infrastructures_tourism_croatia_hotel    │         5 │        45 │ 5_asiático_singapur_china_infraestructuras    │     0.797764 │
╘════╧═════════╧═════════╧════════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════════╧══════════════╛


Company 'Indra'
---------------
╒════╤═════════╤═════════╤═══════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                   │   Topic.1 │   Count.1 │ Best Match ES                                  │   similarity │
╞════╪═════════╪═════════╪═══════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │   14372 │ 0_business_countries_technology_digital   │         0 │     25588 │ 0_países_consultoría_digital_clientes          │     0.961553 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     295 │ 1_africa_electricity_morocco_zambia       │         0 │     25588 │ 0_países_consultoría_digital_clientes          │     0.602861 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │     114 │ 2_headmouse_virtualkeyboard_virtual_ratón │         2 │       167 │ 2_virtualkeyboard_auditiva_autismo_teclado     │     0.808461 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      92 │ 3_lighting_visual_audio_hearing           │         0 │     25588 │ 0_países_consultoría_digital_clientes          │     0.608037 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      69 │ 4_election_polling_elections_proposals    │         4 │       103 │ 4_electoral_elecciones_voto_electorales        │     0.976226 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      39 │ 5_stroke_rehabilitation_elderly_limbs     │         2 │       167 │ 2_virtualkeyboard_auditiva_autismo_teclado     │     0.566049 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      32 │ 6_share___                                │         0 │     25588 │ 0_países_consultoría_digital_clientes          │     0.469508 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      29 │ 7_disasters_eo4sd_earthquakes_floods      │         5 │        98 │ 5_incendios_evacuación_forestales_inundaciones │     0.797076 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      13 │ 8_devices_mobile_android_phones           │         0 │     25588 │ 0_países_consultoría_digital_clientes          │     0.53107  │
╘════╧═════════╧═════════╧═══════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════════════════╧══════════════╛


Company 'Logista'
-----------------
╒════╤═════════╤═════════╤═════════════════════════════════════════════╤═══════════╤═══════════╤═════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                     │   Topic.1 │   Count.1 │ Best Match ES                               │   similarity │
╞════╪═════════╪═════════╪═════════════════════════════════════════════╪═══════════╪═══════════╪═════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    2146 │ 0_portugal_services_spain_distributor       │         0 │      2057 │ 0_media_euros_europa_servicios              │     0.880442 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────┼──────────────┤
│  1 │       1 │     121 │ 1_emissions_co2_carbon_sustainable          │         2 │       129 │ 2_emisiones_co2_vehículos_carbono           │     0.896054 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────┼──────────────┤
│  2 │       2 │      92 │ 2_pharma_vaccines_pharmacies_hospitals      │         1 │       225 │ 1_farmacéutico_temperatura_pharma_farmacias │     0.89838  │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      77 │ 3_rare_cancer_foundation_solidarity         │         8 │        13 │ 8_dent_minoritaria_mutación_cromosoma       │     0.896944 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      50 │ 4_city_pedestrians_accidents_autonomous     │         2 │       129 │ 2_emisiones_co2_vehículos_carbono           │     0.661196 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      48 │ 5_thermal_traceability_isothermal_packaging │         4 │        24 │ 4_embalajes_reciclaje_reciclables_plástico  │     0.639965 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      46 │ 6_sailing_trophy_j80_boats                  │         0 │      2057 │ 0_media_euros_europa_servicios              │     0.617812 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      35 │ 7_hope_strives_optimism_participation       │         6 │        14 │ 6_esperanza_ilusión_afectiva_alegría        │     0.93007  │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      18 │ 8_exhibition_gallery_auction_sculptures     │         0 │      2057 │ 0_media_euros_europa_servicios              │     0.649719 │
╘════╧═════════╧═════════╧═════════════════════════════════════════════╧═══════════╧═══════════╧═════════════════════════════════════════════╧══════════════╛


Company 'Melia'
---------------
╒════╤═════════╤═════════╤═══════════════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                           │   Topic.1 │   Count.1 │ Best Match ES                             │   similarity │
╞════╪═════════╪═════════╪═══════════════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════╪══════════════╡
│  0 │       0 │    1314 │ 0_hotels_revpar_hotel_brand                       │         0 │      2850 │ 0_hoteles_hotels_international_compañía   │     0.907193 │
├────┼─────────┼─────────┼───────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  1 │       1 │     159 │ 1_sustainability_sustainable_environmental_carbon │         2 │       178 │ 2_emisiones_carbono_co2_residuos          │     0.938151 │
├────┼─────────┼─────────┼───────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  2 │       2 │      80 │ 2_thailand_china_chengdu_vietnam                  │         1 │       278 │ 1_china_indonesia_tailandia_shanghai      │     0.907275 │
├────┼─────────┼─────────┼───────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  3 │       3 │      65 │ 3_cuisine_restaurant_dishes_cocktails             │         3 │       122 │ 3_cocina_restaurante_menú_buffet          │     0.922569 │
├────┼─────────┼─────────┼───────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  4 │       4 │      44 │ 4_germany_frankfurt_dusseldorf_aachen             │         4 │       121 │ 4_alemania_frankfurt_dusseldorf_wolfsburg │     0.979784 │
├────┼─────────┼─────────┼───────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  5 │       5 │      36 │ 5_sea_beach_coast_ocean                           │         8 │        10 │ 8_alquilar_kitesurf_windsurf_océano       │     0.866907 │
├────┼─────────┼─────────┼───────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  6 │       6 │      24 │ 6_marathon_race_runners_magaluf                   │         6 │        31 │ 6_ubicación_hotel_bicicletas_ciudad       │     0.550347 │
├────┼─────────┼─────────┼───────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  7 │       7 │      17 │ 7_treatments_spa_massage_wellness                 │         6 │        31 │ 6_ubicación_hotel_bicicletas_ciudad       │     0.477814 │
├────┼─────────┼─────────┼───────────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  8 │       8 │      16 │ 8_payment_samsung_phone_card                      │         5 │        36 │ 5_4g_móvil_samsung_conectividad           │     0.857781 │
╘════╧═════════╧═════════╧═══════════════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════╧══════════════╛


Company 'Merlin'
----------------
╒════╤═════════╤═════════╤═════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                 │   Topic.1 │   Count.1 │ Best Match ES                             │   similarity │
╞════╪═════════╪═════════╪═════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════╪══════════════╡
│  0 │       0 │     706 │ 0_index_portfolio_performance_offices   │         0 │       979 │ 0_euros_centros_plan_adquisición          │     0.895742 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  1 │       1 │     327 │ 1_park_madrid_barcelona_plaza           │         0 │       979 │ 0_euros_centros_plan_adquisición          │     0.767705 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  2 │       2 │     112 │ 2_shares_preferential_securities_rights │         0 │       979 │ 0_euros_centros_plan_adquisición          │     0.754666 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  3 │       3 │      84 │ 3_debt_loan_coupon_liquidity            │         2 │       203 │ 2_deuda_préstamo_endeudamiento_puente     │     0.92194  │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  4 │       4 │      61 │ 4_dividend_cents_remuneration_share     │         0 │       979 │ 0_euros_centros_plan_adquisición          │     0.745059 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  5 │       5 │      45 │ 5_energy_sustainability_carbon_gresb    │         7 │        47 │ 7_sostenibilidad_carbono_gresb_cero       │     0.93307  │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  6 │       6 │      32 │ 6_rental_rent_tenants_occupancy         │         8 │        12 │ 8_bloque_transmisión_luz_desconsolidación │     0.734359 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  7 │       7 │      28 │ 7_merlinproperties_com_www_https        │         3 │       165 │ 3_web_datos_usuario_merlinproperties      │     0.88958  │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────┼──────────────┤
│  8 │       8 │      19 │ 8_ffo_metrics_2021_outlook              │         1 │       234 │ 1_vs_tinkle_operativo_neto                │     0.814281 │
╘════╧═════════╧═════════╧═════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════╧══════════════╛


Company 'Naturgy'
-----------------
╒════╤═════════╤═════════╤══════════════════════════════════════════════╤═══════════╤═══════════╤═══════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                      │   Topic.1 │   Count.1 │ Best Match ES                                     │   similarity │
╞════╪═════════╪═════════╪══════════════════════════════════════════════╪═══════════╪═══════════╪═══════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │      81 │ 0_wind_solar_capacity_australia              │         0 │      7001 │ 0_renovable_gas_millones_energética               │     0.840982 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │      78 │ 1_fuel_emissions_network_renewable           │         0 │      7001 │ 0_renovable_gas_millones_energética               │     0.849424 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │      76 │ 2_criteria_madrid_corporate_prices           │         0 │      7001 │ 0_renovable_gas_millones_energética               │     0.853335 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      39 │ 3_social_vulnerability_foundation_programmes │         0 │      7001 │ 0_renovable_gas_millones_energética               │     0.803755 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      36 │ 4_shareholders_agreement_dividend_approved   │         4 │       105 │ 4_dividendo_dividendos_complementario_accionistas │     0.904118 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      29 │ 5_ebitda_euros_income_debt                   │         8 │        17 │ 8_euronext_utilities_120_multiutilities           │     0.801177 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      26 │ 6_strategic_risk_2022_management             │         0 │      7001 │ 0_renovable_gas_millones_energética               │     0.762904 │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      19 │ 7_educational_students_science_teachers      │         0 │      7001 │ 0_renovable_gas_millones_energética               │     0.64515  │
├────┼─────────┼─────────┼──────────────────────────────────────────────┼───────────┼───────────┼───────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      17 │ 8_flight_fuvex_drones_aircraft               │         5 │        70 │ 5_drones_inspección_eléctricas_vuelos             │     0.944777 │
╘════╧═════════╧═════════╧══════════════════════════════════════════════╧═══════════╧═══════════╧═══════════════════════════════════════════════════╧══════════════╛


Company 'Red'
-------------
╒════╤═════════╤═════════╤═════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                 │   Topic.1 │   Count.1 │ Best Match ES                                  │   similarity │
╞════╪═════════╪═════════╪═════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │      78 │ 0_solar_photovoltaic_production_wind    │         4 │        80 │ 4_fotovoltaica_solar_gwh_producción            │     0.930769 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │      61 │ 1_substations_grid_220_transmission     │         6 │        46 │ 6_cable_perforación_cables_submarino           │     0.735675 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │      29 │ 2_cable_underwater_drilling_directional │         6 │        46 │ 6_cable_perforación_cables_submarino           │     0.888926 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      28 │ 3_zero_islands_balearic_obtained        │         0 │      2355 │ 0_energía_generación_gwh_2020                  │     0.817429 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      26 │ 4_road_traffic_school_council           │         5 │        48 │ 5_carretera_rural_tráfico_caminos              │     0.938089 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      24 │ 5_factored_seasonal_influence_demand    │         0 │      2355 │ 0_energía_generación_gwh_2020                  │     0.764443 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      19 │ 6_battery_hydroelectric_capacity_island │         4 │        80 │ 4_fotovoltaica_solar_gwh_producción            │     0.755586 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      12 │ 7_birdlife_birds_bird_vulture           │         2 │       105 │ 2_especies_biodiversidad_vegetación_naturaleza │     0.735376 │
├────┼─────────┼─────────┼─────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      10 │ 8_repair_contingency_fault_ibiza        │         8 │        32 │ 8_ucrania_continental_moldavia_sincronización  │     0.66582  │
╘════╧═════════╧═════════╧═════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════════════════╧══════════════╛


Company 'Repsol'
----------------
╒════╤═════════╤═════════╤═════════════════════════════════════════════╤═══════════╤═══════════╤═════════════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                     │   Topic.1 │   Count.1 │ Best Match ES                                   │   similarity │
╞════╪═════════╪═════════╪═════════════════════════════════════════════╪═══════════╪═══════════╪═════════════════════════════════════════════════╪══════════════╡
│  0 │       0 │    1756 │ 0_billion_energy_hydrogen_renewable         │         1 │       267 │ 1_movilidad_2050_emisiones_renovables           │     0.870757 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  1 │       1 │      88 │ 1_aviation_flight_airline_aircraft          │         4 │        70 │ 4_residuos_aviación_biocombustibles_biojet      │     0.649401 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  2 │       2 │      64 │ 2_director_chairman_antonio_executive       │         0 │       320 │ 0_presidente_madrid_sostenibilidad_consejero    │     0.792102 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  3 │       3 │      61 │ 3_hecate_battery_storage_electrolyzer       │         1 │       267 │ 1_movilidad_2050_emisiones_renovables           │     0.72359  │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  4 │       4 │      60 │ 4_reforestation_hectares_forests_green      │         6 │        42 │ 6_verde_climático_reforestaciones_reforestación │     0.937623 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  5 │       5 │      54 │ 5_polyolefins_polyurethane_plastic_plastics │         4 │        70 │ 4_residuos_aviación_biocombustibles_biojet      │     0.523241 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  6 │       6 │      25 │ 6_waste_circular_ecoplanta_recycling        │         4 │        70 │ 4_residuos_aviación_biocombustibles_biojet      │     0.706022 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  7 │       7 │      18 │ 7_pillars_decarbonization_underground_power │         1 │       267 │ 1_movilidad_2050_emisiones_renovables           │     0.707863 │
├────┼─────────┼─────────┼─────────────────────────────────────────────┼───────────┼───────────┼─────────────────────────────────────────────────┼──────────────┤
│  8 │       8 │      15 │ 8_trains_train_railway_infrastructure       │         1 │       267 │ 1_movilidad_2050_emisiones_renovables           │     0.613865 │
╘════╧═════════╧═════════╧═════════════════════════════════════════════╧═══════════╧═══════════╧═════════════════════════════════════════════════╧══════════════╛


Company 'Sacyr'
---------------
╒════╤═════════╤═════════╤═════════════════════════════════════════════════╤═══════════╤═══════════╤══════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                         │   Topic.1 │   Count.1 │ Best Match ES                            │   similarity │
╞════╪═════════╪═════════╪═════════════════════════════════════════════════╪═══════════╪═══════════╪══════════════════════════════════════════╪══════════════╡
│  0 │       0 │    1503 │ 0_ebitda_innovation_debt_euros                  │         0 │      1257 │ 0_euros_sostenibilidad_innovación_plan   │     0.923585 │
├────┼─────────┼─────────┼─────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  1 │       1 │     304 │ 1_chile_airport_colombia_highway                │         1 │       491 │ 1_colombia_chile_autopista_perú          │     0.921661 │
├────┼─────────┼─────────┼─────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  2 │       2 │     214 │ 2_traffic_railway_bridges_mobility              │         3 │       153 │ 3_túnel_túneles_tráfico_puentes          │     0.94655  │
├────┼─────────┼─────────┼─────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  3 │       3 │     124 │ 3_asobal_handball_diversity_women               │         1 │       491 │ 1_colombia_chile_autopista_perú          │     0.663562 │
├────┼─────────┼─────────┼─────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  4 │       4 │     121 │ 4_membranes_osmosis_desalination_agricultural   │         5 │       102 │ 5_agua_aguas_membranas_ciclo             │     0.873454 │
├────┼─────────┼─────────┼─────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  5 │       5 │     111 │ 5_waste_recycling_plastics_recycled             │         4 │       122 │ 4_residuos_limpieza_reciclaje_plástico   │     0.969145 │
├────┼─────────┼─────────┼─────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  6 │       6 │      57 │ 6_renewable_wind_electricity_turbines           │         2 │       221 │ 2_emisiones_carbono_climático_co2        │     0.702456 │
├────┼─────────┼─────────┼─────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  7 │       7 │      52 │ 7_beds_rooms_hospitals_floors                   │         7 │        39 │ 7_camas_hospitales_hospitalaria_hospital │     0.788066 │
├────┼─────────┼─────────┼─────────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────────────┼──────────────┤
│  8 │       8 │      49 │ 8_elderly_disabilities_social_intergenerational │         7 │        39 │ 7_camas_hospitales_hospitalaria_hospital │     0.653319 │
╘════╧═════════╧═════════╧═════════════════════════════════════════════════╧═══════════╧═══════════╧══════════════════════════════════════════╧══════════════╛


Company 'Solaria'
-----------------
╒════╤═════════╤═════════╤═══════════════════════════════════════════════╤═══════════╤═══════════╤══════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                       │   Topic.1 │   Count.1 │ Best Match ES                    │   similarity │
╞════╪═════════╪═════════╪═══════════════════════════════════════════════╪═══════════╪═══════════╪══════════════════════════════════╪══════════════╡
│  0 │       0 │     375 │ 0_distributed_requirements_automation_field   │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.712872 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────┼──────────────┤
│  1 │       1 │     168 │ 1_headquarters_california_president_record    │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.723404 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────┼──────────────┤
│  2 │       2 │     108 │ 2_cookies_website_privacy_analytics           │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.584673 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────┼──────────────┤
│  3 │       3 │     102 │ 3_financing_buildings_greenprint_energy       │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.760763 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────┼──────────────┤
│  4 │       4 │      67 │ 4_contact_media_4493_resolutioncommunications │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.649152 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────┼──────────────┤
│  5 │       5 │      66 │ 5_modules_powerxt_330wp_provider              │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.743394 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────┼──────────────┤
│  6 │       6 │      45 │ 6_canadian_gcl_itc_trade                      │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.580253 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────┼──────────────┤
│  7 │       7 │      22 │ 7_tsc_europe_percent_automotive               │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.703974 │
├────┼─────────┼─────────┼───────────────────────────────────────────────┼───────────┼───────────┼──────────────────────────────────┼──────────────┤
│  8 │       8 │      11 │ 8_greenhouse_growers_plant_save               │         1 │      1119 │ 1_solaria_energía_compañía_euros │     0.644437 │
╘════╧═════════╧═════════╧═══════════════════════════════════════════════╧═══════════╧═══════════╧══════════════════════════════════╧══════════════╛


Company 'Telefonica'
--------------------
╒════╤═════════╤═════════╤═══════════════════════════════════════════╤═══════════╤═══════════╤════════════════════════════════════════╤══════════════╕
│    │   Topic │   Count │ Name EN                                   │   Topic.1 │   Count.1 │ Best Match ES                          │   similarity │
╞════╪═════════╪═════════╪═══════════════════════════════════════════╪═══════════╪═══════════╪════════════════════════════════════════╪══════════════╡
│  0 │       0 │   11265 │ 0_5g_million_customers_mobile             │         0 │     22766 │ 0_telefónica_millones_clientes_digital │     0.914506 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  1 │       1 │     291 │ 1_vehicles_mobility_driving_traffic       │         4 │       155 │ 4_drones_satélites_avianca_b2b         │     0.52574  │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  2 │       2 │     112 │ 2_robotics_robots_drone_drones            │         4 │       155 │ 4_drones_satélites_avianca_b2b         │     0.770008 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  3 │       3 │     105 │ 3_china_shanghai_chinese_provinces        │         0 │     22766 │ 0_telefónica_millones_clientes_digital │     0.626504 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  4 │       4 │      49 │ 4_marina_boats_lighting_electricity       │         0 │     22766 │ 0_telefónica_millones_clientes_digital │     0.611674 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  5 │       5 │      37 │ 5_cattle_forest_trees_species             │         0 │     22766 │ 0_telefónica_millones_clientes_digital │     0.438501 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  6 │       6 │      32 │ 6_movistar_videos_tweets_hashtag          │         0 │     22766 │ 0_telefónica_millones_clientes_digital │     0.689497 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  7 │       7 │      23 │ 7_employability_workers_salary_vocational │         0 │     22766 │ 0_telefónica_millones_clientes_digital │     0.590835 │
├────┼─────────┼─────────┼───────────────────────────────────────────┼───────────┼───────────┼────────────────────────────────────────┼──────────────┤
│  8 │       8 │      14 │ 8_organic_terms_oibda_                    │         0 │     22766 │ 0_telefónica_millones_clientes_digital │     0.603365 │
╘════╧═════════╧═════════╧═══════════════════════════════════════════╧═══════════╧═══════════╧════════════════════════════════════════╧══════════════╛

Topics Details¶

The files topics/topics_details_company.xlsx provides a detailed view of what is contained in each topic. Let me show you the example of Inditex. The column index allows to identify the two blocks (english topics have index $0$ to $9$, and spanish topics start over from $0$ to $9$ again, since we extract the $10$ top terms for each topic, first in english and then in spanish.) Columnwise you get the different topics, thus we have as many columns as topics generated. I am asking the model to give me 10 topics but this is not always possible. Therefore, it could happen that we have less than 10 columns.

Each column provided the english topic and the best matching spanish topic. That is, consider the table with the best topic matches below:

In [17]:
pd.read_excel(f"results/topics/topics_match_Inditex.xlsx")
Out[17]:
Topic Count Name EN Topic.1 Count.1 Best Match ES similarity
0 0 1576 0_store_spain_stores_opened 0 1397 0_dutti_bear_tienda_euros 0.873072
1 1 231 1_markets_online_stores_expand 1 190 1_mercados_tiendas_online_turquía 0.947808
2 2 162 2_textile_materials_garments_fiber 5 34 5_textil_fibras_fibra_fiber 0.919047
3 3 99 3_lighting_building_architectural_glass 0 1397 0_dutti_bear_tienda_euros 0.604459
4 4 78 4_refugees_migrants_bangladesh_migration 2 114 2_camboya_refugiados_rurales_bangladés 0.876375
5 5 46 5_director_appointed_directors_managing 0 1397 0_dutti_bear_tienda_euros 0.549523
6 6 36 6_rfid_radio_frequency_overboard 8 11 8_música_conciertos_backstage_dj 0.568484
7 7 19 7_yoga_athleisure_sessions_sportswear 6 16 6_yoga_sesiones_fitness_athleisure 0.963837
8 8 13 8_malnutrition_children_severe_childbirth 2 114 2_camboya_refugiados_rurales_bangladés 0.626930

Assume you want to dig into each topic, e.g., topic_0. From the table above, we see that topic 0 in english contains words such as store, spain, etc., while the spanish topic contains dutti, bear, etc. Now, if you look at the table below, under column topic_0, you get the full list (i.e., the top 10 terms in the topic, first in english and then in spanish.)

In [18]:
pd.read_excel("results/topics/topics_details_Inditex.xlsx")
Out[18]:
index topic_0 topic_1 topic_2 topic_3 topic_4 topic_5 topic_6 topic_7 topic_8
0 0 ('store', 0.26394370400208217) ('markets', 0.5324681506427771) ('textile', 0.4336948236068981) ('lighting', 0.5615787559024172) ('refugees', 0.7629421978404596) ('director', 0.7718410913927685) ('rfid', 0.8707518961891548) ('yoga', 0.877181259206003) ('malnutrition', 1.528766582669006)
1 1 ('spain', 0.24268316990144728) ('online', 0.4621054537851776) ('materials', 0.40041827968640764) ('building', 0.5186676075599268) ('migrants', 0.547374113750706) ('appointed', 0.6469110160994647) ('radio', 0.589578405497103) ('athleisure', 0.5295941661929578) ('children', 1.024108358726104)
2 2 ('stores', 0.24201567237487906) ('stores', 0.4387556009137201) ('garments', 0.3878622277024425) ('architectural', 0.4820666499109144) ('bangladesh', 0.5358506922892131) ('directors', 0.6266884731252734) ('frequency', 0.5425477632663307) ('sessions', 0.5116278516220321) ('severe', 0.8981101598121982)
3 3 ('opened', 0.22778965198711296) ('expand', 0.3287739182777003) ('fiber', 0.3678144691607375) ('glass', 0.42825161292636377) ('migration', 0.5331546895905176) ('managing', 0.6093543294126391) ('overboard', 0.4863597463069413) ('sportswear', 0.45820995163499895) ('childbirth', 0.8118424294248775)
4 4 ('sales', 0.22636350246669495) ('finland', 0.32104363807349984) ('fabrics', 0.3586345829217239) ('balconies', 0.4006899162419835) ('cambodia', 0.5274628941083928) ('chief', 0.5867728273301769) ('fishing', 0.4863597463069413) ('trainers', 0.45205199324637224) ('infant', 0.7765705550620848)
5 5 ('million', 0.22500919773470632) ('platforms', 0.3168712891432323) ('clothing', 0.34565648021990625) ('architect', 0.38211510783817376) ('humanitarian', 0.47383128570237387) ('executive', 0.5411227523464901) ('ship', 0.41514787508581935) ('fitness', 0.45205199324637224) ('india', 0.7066192851572526)
6 6 ('bear', 0.22079948324559304) ('countries', 0.3138985006419049) ('wood', 0.3299143491351075) ('modernist', 0.3727991848913497) ('university', 0.4680075026894597) ('chairman', 0.5143860574163316) ('sailor', 0.41514787508581935) ('gymnastics', 0.45205199324637224) ('mortality', 0.611924201556244)
7 7 ('profit', 0.2194084672016085) ('europe', 0.30826558094115386) ('recycled', 0.3275760466124166) ('screens', 0.36577817615098335) ('support', 0.4429031199105596) ('committee', 0.48887847627080167) ('boats', 0.41514787508581935) ('classes', 0.43241182597582006) ('spleen', 0.611924201556244)
8 8 ('shopping', 0.2144725395333686) ('slovenia', 0.30078877927747466) ('fibres', 0.3055370176744884) ('brick', 0.3539248225315275) ('turkish', 0.4106302104968326) ('secretary', 0.4881743394119424) ('dispatch', 0.41514787508581935) ('tour', 0.41774239155678716) ('parental', 0.611924201556244)
9 9 ('china', 0.21340553016033806) ('croatia', 0.2924768076799347) ('garment', 0.3018597754940443) ('refurbishment', 0.34087259713588897) ('europe', 0.37699374223825194) ('shareholders', 0.4373239267643149) ('crewmembers', 0.41514787508581935) ('olympic', 0.41774239155678716) ('typhoon', 0.611924201556244)
10 0 ('dutti', 0.2599133665559594) ('mercados', 0.542448203282406) ('textil', 0.7868052753861249) ('dutti', 0.2599133665559594) ('camboya', 0.49028566277569785) ('dutti', 0.2599133665559594) ('música', 0.9592093059310827) ('yoga', 1.0019796866232626) ('camboya', 0.49028566277569785)
11 1 ('bear', 0.25698095575939556) ('tiendas', 0.4866748834772427) ('fibras', 0.6903244101593469) ('bear', 0.25698095575939556) ('refugiados', 0.47451327730321213) ('bear', 0.25698095575939556) ('conciertos', 0.6754336398374565) ('sesiones', 0.6034575049162347) ('refugiados', 0.47451327730321213)
12 2 ('tienda', 0.24827711081991186) ('online', 0.4183662201458335) ('fibra', 0.683311387444974) ('tienda', 0.24827711081991186) ('rurales', 0.43813274488669285) ('tienda', 0.24827711081991186) ('backstage', 0.6754336398374565) ('fitness', 0.6034575049162347) ('rurales', 0.43813274488669285)
13 3 ('euros', 0.2372428620944041) ('turquía', 0.3967509268737034) ('fiber', 0.6575960259376952) ('euros', 0.2372428620944041) ('bangladés', 0.4374099807174477) ('euros', 0.2372428620944041) ('dj', 0.6464209434734267) ('athleisure', 0.5148353170204706) ('bangladés', 0.4374099807174477)
14 4 ('ventas', 0.23611172498699862) ('comercial', 0.3713379005913231) ('algodón', 0.6058873779177674) ('ventas', 0.23611172498699862) ('sirios', 0.40496626157188387) ('ventas', 0.23611172498699862) ('inspiradora', 0.5087492949433657) ('entrenamientos', 0.5148353170204706) ('sirios', 0.40496626157188387)
15 5 ('stradivarius', 0.23428763812657605) ('países', 0.3705326171024336) ('reciclaje', 0.544682515436719) ('stradivarius', 0.23428763812657605) ('áfrica', 0.3684882156274236) ('stradivarius', 0.23428763812657605) ('diversión', 0.5087492949433657) ('trainers', 0.5148353170204706) ('áfrica', 0.3684882156274236)
16 6 ('dividendo', 0.21217854490764804) ('establecimientos', 0.352026283419327) ('lenzing', 0.5268815185633595) ('dividendo', 0.21217854490764804) ('humanitaria', 0.3616087518617294) ('dividendo', 0.21217854490764804) ('compositora', 0.5087492949433657) ('running', 0.5148353170204706) ('humanitaria', 0.3616087518617294)
17 7 ('tiendas', 0.21097419422600525) ('malta', 0.3225925582860526) ('textiles', 0.5149841229423846) ('tiendas', 0.21097419422600525) ('poblaciones', 0.34664380155444735) ('tiendas', 0.21097419422600525) ('olympics', 0.5087492949433657) ('clases', 0.5148353170204706) ('poblaciones', 0.34664380155444735)
18 8 ('trabajo', 0.20313064223736466) ('europa', 0.31987082343321466) ('cotton', 0.41803350554430363) ('trabajo', 0.20313064223736466) ('desnutrición', 0.33943143364001577) ('trabajo', 0.20313064223736466) ('festival', 0.5087492949433657) ('tour', 0.49272098949928217) ('desnutrición', 0.33943143364001577)
19 9 ('beneficio', 0.1951388652322703) ('bulgaria', 0.3180058269135388) ('sostenibles', 0.41100755029853725) ('beneficio', 0.1951388652322703) ('desastres', 0.33943143364001577) ('beneficio', 0.1951388652322703) ('lingerie', 0.5087492949433657) ('movimiento', 0.4630146839760386) ('desastres', 0.33943143364001577)

Topics for the PR with low similarity score¶

We want to identify which topics are discussed in Spanish but not in English. To do this, we identify the PRs with a similarity score in the bottom 20th percentile, i.e., the PRs whose match in English is low. Once we select these PRs with low similarity score, we extrac the topics discussed there.

In [8]:
for i, company in enumerate(companies):
    dfI = pd.read_excel(f"results/topics/topics_details_lowsim_{company}.xlsx")
    print(f"\n\nCompany '{company}'")
    print("-"*len(f"Company '{company}'"))
    #print(dfI.to_markdown(index=False))
    print(tabulate(dfI, headers='keys', tablefmt='fancy_grid'))

Company 'Acerinox'
------------------
╒════╤════════════════════════════════════════╤═════════════════════════════════════╤═════════════════════════════════════════╤═══════════════════════════════════════╤══════════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╕
│    │ 0                                      │ 1                                   │ 2                                       │ 3                                     │ 4                                        │ 5                                       │ 6                                    │ 7                                    │ 8                                    │
╞════╪════════════════════════════════════════╪═════════════════════════════════════╪═════════════════════════════════════════╪═══════════════════════════════════════╪══════════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╡
│  0 │ ('administración', 0.3446688314899078) │ ('mercado', 0.3607216557704758)     │ ('autorizaciones', 0.41203061598476265) │ ('corporación', 0.6549581798981655)   │ ('euros', 0.5870595523798231)            │ ('gibraltar', 0.6247222975230668)       │ ('cdp', 0.5293619015943242)          │ ('igualdad', 0.782721501811024)      │ ('impuestos', 0.7063004660817851)    │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  1 │ ('junta', 0.34412171982765133)         │ ('excellence', 0.33262524411325045) │ ('metals', 0.4086824130917851)          │ ('steel', 0.5713539541999068)         │ ('banco', 0.572031047806087)             │ ('pandemia', 0.5995403978792767)        │ ('reducción', 0.529325973464791)     │ ('diversidad', 0.75647701468517)     │ ('930', 0.6693724556756824)          │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  2 │ ('presidente', 0.33221415625973916)    │ ('mejora', 0.3219229629947174)      │ ('inoxidable', 0.40046354451124727)     │ ('aviation', 0.5494437028076312)      │ ('sostenibles', 0.5476156191613395)      │ ('comarca', 0.5968240088910566)         │ ('emisiones', 0.5141979161698655)    │ ('programas', 0.5266679461923166)    │ ('minoritarios', 0.6237618101709637) │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  3 │ ('accionistas', 0.3293453317695117)    │ ('digital', 0.32134108008063034)    │ ('acero', 0.38402608174094593)          │ ('spain', 0.5494437028076312)         │ ('sostenible', 0.5454948967783959)       │ ('crisis', 0.562921567499711)           │ ('gases', 0.46446996065307306)       │ ('convenios', 0.495275772785189)     │ ('resultados', 0.5894607626403542)   │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  4 │ ('general', 0.3115765449669652)        │ ('producción', 0.32131811350822315) │ ('material', 0.38010409723370236)       │ ('school', 0.5494437028076312)        │ ('soluciones', 0.4798210015975784)       │ ('organizaciones', 0.562921567499711)   │ ('carbono', 0.46446996065307306)     │ ('profesionales', 0.495275772785189) │ ('trimestre', 0.5400218002807938)    │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  5 │ ('propondrá', 0.27446329739496755)     │ ('global', 0.3005870564894018)      │ ('integración', 0.37206968586667993)    │ ('bidco', 0.5494437028076312)         │ ('36', 0.4348881489699063)               │ ('donación', 0.522937410299136)         │ ('neutralidad', 0.46446996065307306) │ ('talento', 0.495275772785189)       │ ('negativos', 0.5248701033571805)    │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  6 │ ('dividendo', 0.2689510140926769)      │ ('visión', 0.293666968107713)       │ ('adquisición', 0.3432103523019415)     │ ('international', 0.5494437028076312) │ ('2020', 0.3829052114449079)             │ ('logísticas', 0.4739669202367306)      │ ('2050', 0.46446996065307306)        │ ('escuelas', 0.495275772785189)      │ ('matriz', 0.5248701033571805)       │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  7 │ ('sostenibilidad', 0.2564445994905909) │ ('ahorro', 0.293666968107713)       │ ('fabricación', 0.33217592513472577)    │ ('forum', 0.5494437028076312)         │ ('pago', 0.38214245480020187)            │ ('apoyo', 0.4528770819082979)           │ ('climática', 0.46446996065307306)   │ ('empleo', 0.495275772785189)        │ ('cuentas', 0.5248701033571805)      │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  8 │ ('velázquez', 0.2540854763338247)      │ ('aprovechar', 0.29012587704177706) │ ('construcción', 0.3225973174361408)    │ ('licenciado', 0.5494437028076312)    │ ('externalización', 0.37623851499424055) │ ('responsabilidad', 0.4315053057247549) │ ('residuos', 0.4471989770620337)     │ ('salud', 0.4712699444940318)        │ ('sinergias', 0.5248701033571805)    │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  9 │ ('corporativo', 0.24207656850964573)   │ ('360º', 0.2880619113420752)        │ ('reciclar', 0.3188322195893188)        │ ('piolin', 0.5494437028076312)        │ ('financiaciones', 0.37623851499424055)  │ ('vulnerable', 0.4100470676164621)      │ ('agua', 0.4471989770620337)         │ ('centros', 0.4466302022736949)      │ ('valorada', 0.5248701033571805)     │
╘════╧════════════════════════════════════════╧═════════════════════════════════════╧═════════════════════════════════════════╧═══════════════════════════════════════╧══════════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╛


Company 'ACS'
-------------
╒════╤════════════════════════════════════════╤══════════════════════════════════════════╤══════════════════════════════════════╤════════════════════════════════════════╤═══════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════════╤═══════════════════════════════════════════════╤═════════════════════════════════════╕
│    │ 0                                      │ 1                                        │ 2                                    │ 3                                      │ 4                                     │ 5                                       │ 6                                        │ 7                                             │ 8                                   │
╞════╪════════════════════════════════════════╪══════════════════════════════════════════╪══════════════════════════════════════╪════════════════════════════════════════╪═══════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════════╪═══════════════════════════════════════════════╪═════════════════════════════════════╡
│  0 │ ('ventas', 0.2879246656265746)         │ ('total', 0.5079198167560076)            │ ('australia', 0.4349138962622576)    │ ('transmisión', 0.3995141111246652)    │ ('deuda', 0.511286674659588)          │ ('montreal', 0.47126226990698233)       │ ('recuperación', 0.8048819110579275)     │ ('magnitudes', 0.5512355031959101)            │ ('dólar', 1.047939696834187)        │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  1 │ ('américa', 0.2874710407535649)        │ ('internacionales', 0.39400531295227326) │ ('estados', 0.4212223013849819)      │ ('renovable', 0.38689841880642445)     │ ('dividendos', 0.4621869346268305)    │ ('canadá', 0.4626822227358012)          │ ('norteamericano', 0.7783941885287351)   │ ('ebit1', 0.47013287090846967)                │ ('depreciación', 0.920360415154075) │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  2 │ ('explotación', 0.2861468508797913)    │ ('ventas', 0.3695239152003767)           │ ('autopista', 0.4104583014042352)    │ ('eléctrica', 0.376979210914733)       │ ('endeudamiento', 0.4284435543859669) │ ('iridium', 0.4414093805617823)         │ ('crecimiento', 0.7503015387772962)      │ ('ebitda2', 0.4440528591833282)               │ ('australiano', 0.9027521896255224) │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  3 │ ('beneficio', 0.2721882844141119)      │ ('facturación', 0.3611174152294049)      │ ('ampliación', 0.3955755533727835)   │ ('plantas', 0.35312392144495836)       │ ('financiera', 0.41713361874158816)   │ ('infrastructure', 0.42169426516196773) │ ('español', 0.7073252787468353)          │ ('financierasresultados', 0.4311996479884733) │ ('peso', 0.8295886942174894)        │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  4 │ ('accionistas', 0.2720725477655093)    │ ('recurrente', 0.35912383400116227)      │ ('construcción', 0.3853212038312312) │ ('perú', 0.3516123088146794)           │ ('dividendo', 0.3917958682651418)     │ ('ontario', 0.39594898105226567)        │ ('latinoamericanos', 0.6988799925417083) │ ('corporación', 0.3642837945720481)           │ ('eliminados', 0.7632731911039978)  │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  5 │ ('información', 0.26590834630693366)   │ ('deuda', 0.34530334452449307)           │ ('nueva', 0.3720115522958355)        │ ('mantenimiento', 0.34896882277312535) │ ('privada', 0.3815709058123991)       │ ('canada', 0.39594898105226567)         │ ('mercado', 0.6700621875862725)          │ ('euros20172018var', 0.340614281599611)       │ ('moneda', 0.6810075929844337)      │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  6 │ ('sociedad', 0.2655955084142192)       │ ('área', 0.3376972689310078)             │ ('mejora', 0.36990803756489565)      │ ('gas', 0.3424676200364212)            │ ('compra', 0.36735340744198347)       │ ('vancouver', 0.3945410202198068)       │ ('positiva', 0.6473311568710024)         │ ('9925', 0.340614281599611)                   │ ('euro', 0.6793517499252554)        │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  7 │ ('europa', 0.26511152341890465)        │ ('mercados', 0.3145167928313579)         │ ('diseño', 0.3496426953268953)       │ ('ingeniería', 0.3405209569022553)     │ ('flexible', 0.34534602366003225)     │ ('canadienses', 0.38757189540421527)    │ ('brasil', 0.6388700492189363)           │ ('euros20152016var', 0.340614281599611)       │ ('brasileño', 0.6610139735236767)   │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  8 │ ('administración', 0.2641903415238548) │ ('euros', 0.3084061169853887)            │ ('california', 0.2981902851036453)   │ ('saudí', 0.3393735376753394)          │ ('reduce', 0.33671291352619026)       │ ('pasajeros', 0.3756008440332591)       │ ('perú', 0.6044035011157343)             │ ('renovables6', 0.340614281599611)            │ ('cambios', 0.6423199589293849)     │
├────┼────────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────────────┼─────────────────────────────────────┤
│  9 │ ('áfrica', 0.2419488647053479)         │ ('2012', 0.2965212997153408)             │ ('ferroviaria', 0.2971934622301963)  │ ('electricidad', 0.3290055718370815)   │ ('junio', 0.33588792052465233)        │ ('aecon', 0.3565004155406704)           │ ('méxico', 0.5886842507492571)           │ ('euros9m159m16var', 0.340614281599611)       │ ('monedas', 0.5897698756946128)     │
╘════╧════════════════════════════════════════╧══════════════════════════════════════════╧══════════════════════════════════════╧════════════════════════════════════════╧═══════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════════╧═══════════════════════════════════════════════╧═════════════════════════════════════╛


Company 'Bancosantander'
------------------------
╒════╤════════════════════════════════════════╤══════════════════════════════════════╤════════════════════════════════════╤═══════════════════════════════════════╤═════════════════════════════════════╤═════════════════════════════════════╤═════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════╕
│    │ 0                                      │ 1                                    │ 2                                  │ 3                                     │ 4                                   │ 5                                   │ 6                                   │ 7                                       │ 8                                    │
╞════╪════════════════════════════════════════╪══════════════════════════════════════╪════════════════════════════════════╪═══════════════════════════════════════╪═════════════════════════════════════╪═════════════════════════════════════╪═════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════╡
│  0 │ ('www', 0.2744594803451011)            │ ('tel', 1.0909759350684403)          │ ('áfrica', 0.5741104017243858)     │ ('especies', 0.640424810898499)       │ ('cáncer', 1.0210834293625908)      │ ('ferrari', 0.8278126116444144)     │ ('cranford', 0.6218441786082337)    │ ('alzheimer', 0.7232259715395583)       │ ('china', 1.0592134683217924)        │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  1 │ ('universidades', 0.26439304344075315) │ ('móvil', 0.8454264964220423)        │ ('ministra', 0.5277932240625485)   │ ('conservación', 0.6376353754587915)  │ ('diagnóstico', 0.6184962170328647) │ ('fórmula', 0.6684194737977872)     │ ('arte', 0.5938220994213124)        │ ('cardiovascular', 0.6554403616476647)  │ ('beijing', 0.6927097835678815)      │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  2 │ ('gruposantander', 0.2632228340061528) │ ('app', 0.6833251005456412)          │ ('mujeres', 0.5247295195809636)    │ ('especie', 0.5976383970397403)       │ ('tratamientos', 0.579406685638578) │ ('pilotos', 0.5913236074137286)     │ ('artistas', 0.5783072010963967)    │ ('brain', 0.5663143836831305)           │ ('chino', 0.5568225481234558)        │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  3 │ ('twitter', 0.2596036633347072)        │ ('google', 0.6332140710013244)       │ ('forum', 0.4754944458708619)      │ ('biodiversidad', 0.5445743656103068) │ ('aecc', 0.5217583909280594)        │ ('simulador', 0.5885992051032419)   │ ('artista', 0.549271774823016)      │ ('blue', 0.5432224437142739)            │ ('chinos', 0.5504273992408929)       │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  4 │ ('madrid', 0.24150334644269697)        │ ('android', 0.5830183482471705)      │ ('africanas', 0.45505469592608844) │ ('extinción', 0.4971261071397178)     │ ('paciente', 0.5190467068936206)    │ ('simuladores', 0.5843129713701066) │ ('esculturas', 0.5432814389857751)  │ ('prevención', 0.5358636129889948)      │ ('mexicanos', 0.49836910590712635)   │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  5 │ ('28660', 0.234525998411125)           │ ('apps', 0.5226523181952953)         │ ('africanos', 0.42793295572852774) │ ('peligro', 0.47741065731200794)      │ ('fármacos', 0.4992923253571596)    │ ('motor', 0.568885841349072)        │ ('escultura', 0.48564118139854606)  │ ('inteligencia', 0.47208182683355915)   │ ('cultura', 0.47674552150625926)     │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  6 │ ('banco', 0.23438565112812465)         │ ('apple', 0.5226523181952953)        │ ('africano', 0.378747363449422)    │ ('genoma', 0.44723786342413013)       │ ('dolor', 0.4992923253571596)       │ ('f1', 0.5591950445345896)          │ ('fotografías', 0.4194324820656181) │ ('niños', 0.46165966968609046)          │ ('chinesa', 0.46818752929072244)     │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  7 │ ('comunicacion', 0.23104491199790803)  │ ('dispositivos', 0.5197894389662402) │ ('marruecos', 0.34742281528720087) │ ('diversidad', 0.4112080244151796)    │ ('cánceres', 0.4189324882074009)    │ ('driver', 0.5438256892568574)      │ ('gallery', 0.41308108054647286)    │ ('mortalidad', 0.43866523534449625)     │ ('shanghai', 0.46818752929072244)    │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  8 │ ('edificio', 0.22822636115982445)      │ ('móviles', 0.48984329098129265)     │ ('climático', 0.34320535187215895) │ ('genética', 0.4069587404807317)      │ ('cobertura', 0.38675017219949087)  │ ('velocidad', 0.4579162159804747)   │ ('diseñador', 0.41308108054647286)  │ ('ansiedad', 0.42903106196621066)       │ ('ingenierías', 0.44942208952912943) │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  9 │ ('corporativa', 0.21254686832385108)   │ ('samsung', 0.42890148561478914)     │ ('naciones', 0.32796686590979957)  │ ('biológica', 0.34471084417614994)    │ ('piel', 0.3728037916263457)        │ ('redbox', 0.4523574420512047)      │ ('escultor', 0.41308108054647286)   │ ('rehabilitación', 0.39612717878580533) │ ('conteúdo', 0.44942208952912943)    │
╘════╧════════════════════════════════════════╧══════════════════════════════════════╧════════════════════════════════════╧═══════════════════════════════════════╧═════════════════════════════════════╧═════════════════════════════════════╧═════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════╛


Company 'Bankinter'
-------------------
╒════╤══════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╤═══════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════════╤═════════════════════════════════════════╤═════════════════════════════════════╕
│    │ 0                                    │ 1                                       │ 2                                    │ 3                                    │ 4                                     │ 5                                    │ 6                                       │ 7                                       │ 8                                   │
╞════╪══════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╪═══════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════════╪═════════════════════════════════════════╪═════════════════════════════════════╡
│  0 │ ('millones', 0.27043943657951564)    │ ('sostenibilidad', 0.6659129145786782)  │ ('accionistas', 0.4439427304956604)  │ ('hipoteca', 0.6801677762735664)     │ ('españoles', 0.4579456623085888)     │ ('apple', 0.5222100755416167)        │ ('energía', 0.8726883243132847)         │ ('hoteles', 1.0407018042617338)         │ ('coronavirus', 1.2016989336732824) │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  1 │ ('euros', 0.27021571907863134)       │ ('ambiental', 0.5196595475824619)       │ ('investment', 0.40094197953832905)  │ ('vivienda', 0.52053444619865)       │ ('españolas', 0.4044970633156543)     │ ('app', 0.45881899634458634)         │ ('energética', 0.6485189712445197)      │ ('hoteleros', 0.801934322364126)        │ ('batería', 0.7583847435871348)     │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  2 │ ('crecimiento', 0.25802245077020797) │ ('climático', 0.4828263397842722)       │ ('inversores', 0.38097489993503825)  │ ('préstamo', 0.5049984011050241)     │ ('española', 0.39941227162884596)     │ ('móvil', 0.454721019107949)         │ ('renovables', 0.5866074810123695)      │ ('bursátil', 0.6355561556682091)        │ ('familiares', 0.674843633774174)   │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  3 │ ('ratio', 0.2546209607639957)        │ ('carbono', 0.47536703892010235)        │ ('dividendo', 0.3631295965909778)    │ ('variable', 0.4689058620119229)     │ ('portugal', 0.3754023215201217)      │ ('iphone', 0.4294515011172452)       │ ('energías', 0.5632801058496418)        │ ('hotelero', 0.5362589949388842)        │ ('epidemia', 0.6728758860612492)    │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  4 │ ('banco', 0.24280224122246882)       │ ('plan', 0.417096710560788)             │ ('volatilidad', 0.3565592474217754)  │ ('hipotecas', 0.4521752496689651)    │ ('empresas', 0.35019924028593724)     │ ('dispositivo', 0.4198723388344381)  │ ('solar', 0.49251447786017827)          │ ('operadores', 0.5362589949388842)      │ ('situación', 0.6516142306553606)   │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  5 │ ('empresas', 0.2306974238807116)     │ ('biodiversidad', 0.4098543009016912)   │ ('dividendos', 0.3502624591823542)   │ ('hipotecario', 0.42789462554937696) │ ('latinoamérica', 0.3412997997027082) │ ('pay', 0.411014983604103)           │ ('iluminación', 0.49251447786017827)    │ ('contratos', 0.4958746834819649)       │ ('crisis', 0.5601497889639733)      │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  6 │ ('banca', 0.22951875024219717)       │ ('sostenible', 0.405843088172427)       │ ('aseguradora', 0.3188235154821649)  │ ('garantía', 0.3995640420813299)     │ ('español', 0.3377327920131191)       │ ('digital', 0.40431429846714123)     │ ('eficiencia', 0.48545810140115314)     │ ('establecimientos', 0.485979668210967) │ ('reducir', 0.5259549778038857)     │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  7 │ ('inversión', 0.22504216125970825)   │ ('sustainability', 0.39353483226544406) │ ('inversiones', 0.31253569080013177) │ ('precio', 0.3777152392368848)       │ ('economía', 0.3360402456884688)      │ ('usuario', 0.4022420529749294)      │ ('edificios', 0.4637138308395768)       │ ('hotels', 0.44060666575303026)         │ ('virus', 0.508768754158511)        │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  8 │ ('bankinter', 0.21653160218280287)   │ ('gobernanza', 0.3554641434528182)      │ ('general', 0.31056832190947664)     │ ('20', 0.3518179480955179)           │ ('mayoritaria', 0.3065251891191444)   │ ('ipad', 0.37074413411167606)        │ ('ahorro', 0.42838372896708343)         │ ('representen', 0.44060666575303026)    │ ('embarazadas', 0.508768754158511)  │
├────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┤
│  9 │ ('ingresos', 0.2141973406670973)     │ ('sostenibles', 0.33121613657015564)    │ ('npi', 0.30289988785525773)         │ ('coinc', 0.3493744987584159)        │ ('alfonso', 0.29557429684908587)      │ ('smartwatches', 0.3329694770474053) │ ('electrificación', 0.4213712247369976) │ ('constitución', 0.44060666575303026)   │ ('epidémica', 0.508768754158511)    │
╘════╧══════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╧═══════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════════╧═════════════════════════════════════════╧═════════════════════════════════════╛


Company 'BBVA'
--------------
╒════╤═══════════════════════════════════╤═══════════════════════════════════════╤═════════════════════════════════════╤══════════════════════════════════════╤═══════════════════════════════════════╤══════════════════════════════╤══════════════════════════════════════════╤════════════════════════════╤════════════════════════════╕
│    │ 0                                 │ 1                                     │ 2                                   │ 3                                    │ 4                                     │ 5                            │ 6                                        │ 7                          │ 8                          │
╞════╪═══════════════════════════════════╪═══════════════════════════════════════╪═════════════════════════════════════╪══════════════════════════════════════╪═══════════════════════════════════════╪══════════════════════════════╪══════════════════════════════════════════╪════════════════════════════╪════════════════════════════╡
│  0 │ ('81', 0.24384726129693213)       │ ('patatas', 0.5011498775254839)       │ ('mexicanos', 0.49190880693598826)  │ ('virus', 0.6604646980716845)        │ ('energética', 0.9516085277651605)    │ ('b9', 6.6642684179850304)   │ ('repatriados', 0.8453259797884253)      │ ('int', 6.912393156033006) │ ('100', 4.628908234412379) │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  1 │ ('76', 0.23664681171278604)       │ ('cebolla', 0.5003206210355893)       │ ('mexican', 0.491907236028343)      │ ('pandemia', 0.6563976142021966)     │ ('energéticas', 0.663478697069364)    │ ('b11c', 6.6642684179850304) │ ('migrantes', 0.8137190196550589)        │ ('', 1e-05)                │ ('', 1e-05)                │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  2 │ ('70', 0.2319030248669824)        │ ('carne', 0.4922037054263043)         │ ('mexico', 0.4606233435978045)      │ ('contagio', 0.6382706882946709)     │ ('petrolera', 0.6613697802379944)     │ ('', 1e-05)                  │ ('centroamericanos', 0.7003411669450463) │ ('', 1e-05)                │ ('', 1e-05)                │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  3 │ ('méxico', 0.20537290899211252)   │ ('kilo', 0.4759844466283456)          │ ('migrantes', 0.43918046400959754)  │ ('vacuna', 0.5635289084416852)       │ ('hidrocarburos', 0.5653872292471689) │ ('', 1e-05)                  │ ('remesas', 0.6306708588660239)          │ ('', 1e-05)                │ ('', 1e-05)                │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  4 │ ('datos', 0.1966260005353993)     │ ('ingredientes', 0.44586948891656647) │ ('mexicana', 0.4272686206371924)    │ ('contagios', 0.5635289084416852)    │ ('certificación', 0.5149015703573915) │ ('', 1e-05)                  │ ('2015', 0.5709967832432942)             │ ('', 1e-05)                │ ('', 1e-05)                │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  5 │ ('banco', 0.19303566762374863)    │ ('sal', 0.44035569515006395)          │ ('migration', 0.4218887406377686)   │ ('epidemia', 0.44030979871445636)    │ ('eficiencia', 0.5122948289093223)    │ ('', 1e-05)                  │ ('mexicans', 0.5525172471462759)         │ ('', 1e-05)                │ ('', 1e-05)                │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  6 │ ('research', 0.18781800300313525) │ ('queso', 0.4259412515943958)         │ ('mexicans', 0.33225126014038764)   │ ('vacunación', 0.4373341920095969)   │ ('renovables', 0.48776889320094835)   │ ('', 1e-05)                  │ ('repatriated', 0.5478762146427772)      │ ('', 1e-05)                │ ('', 1e-05)                │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  7 │ ('15', 0.1837286767447191)        │ ('elaboración', 0.4079447128091623)   │ ('mexicano', 0.3303731931148437)    │ ('países', 0.40638693171127266)      │ ('eléctricos', 0.46915028587056246)   │ ('', 1e-05)                  │ ('emigrantes', 0.5408434671669685)       │ ('', 1e-05)                │ ('', 1e-05)                │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  8 │ ('fuente', 0.18354696290202263)   │ ('alimentos', 0.3872564114536778)     │ ('children', 0.3207321343236256)    │ ('coronavirus', 0.39847511255376866) │ ('minerales', 0.44895184992925136)    │ ('', 1e-05)                  │ ('repatriaciones', 0.5113816194122939)   │ ('', 1e-05)                │ ('', 1e-05)                │
├────┼───────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────┼──────────────────────────────────────────┼────────────────────────────┼────────────────────────────┤
│  9 │ ('años', 0.1784266880685934)      │ ('mantequilla', 0.3844289773215837)   │ ('colombiano', 0.31899867719419345) │ ('tolerables', 0.37108939498969246)  │ ('sostenible', 0.43848541217272713)   │ ('', 1e-05)                  │ ('repatriación', 0.4744747200099009)     │ ('', 1e-05)                │ ('', 1e-05)                │
╘════╧═══════════════════════════════════╧═══════════════════════════════════════╧═════════════════════════════════════╧══════════════════════════════════════╧═══════════════════════════════════════╧══════════════════════════════╧══════════════════════════════════════════╧════════════════════════════╧════════════════════════════╛


Company 'Caixa'
---------------
╒════╤════════════════════════════════════╤══════════════════════════════════════════╤═════════════════════════════════════╤═══════════════════════════════════════╤════════════════════════════╤═══════════════════════════════════╤═════════════════════════════════════════╤════════════════════════════════════╤═══════════════════════════════════╕
│    │ 0                                  │ 1                                        │ 2                                   │ 3                                     │ 4                          │ 5                                 │ 6                                       │ 7                                  │ 8                                 │
╞════╪════════════════════════════════════╪══════════════════════════════════════════╪═════════════════════════════════════╪═══════════════════════════════════════╪════════════════════════════╪═══════════════════════════════════╪═════════════════════════════════════════╪════════════════════════════════════╪═══════════════════════════════════╡
│  0 │ ('caixabank', 0.2232009495672817)  │ ('organismos', 1.3508321323185448)       │ ('patriotismo', 2.1951610204255814) │ ('filantrópicos', 1.7668288791879407) │ ('30h', 6.328172666784712) │ ('rumbao', 2.8915237472533066)    │ ('wifi', 2.63434627538953)              │ ('partner', 2.6193365816467504)    │ ('mentores', 2.8879345463596033)  │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  1 │ ('clientes', 0.2177091804579857)   │ ('microbiota', 1.1574354925257373)       │ ('situada', 1.6934259797664606)     │ ('euromoney', 1.4624725951724384)     │ ('', 1e-05)                │ ('pérez', 2.5745328040276503)     │ ('conexión', 1.4291980710836536)        │ ('socio', 2.031701980289054)       │ ('barcelona', 2.0653517553082037) │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  2 │ ('sector', 0.21060184021851527)    │ ('micotoxinas', 1.1065569115535363)      │ ('celebró', 1.5142875574486232)     │ ('revista', 1.3069955439742729)       │ ('', 1e-05)                │ ('300', 2.5312772867642126)       │ ('descargarnos', 1.3149923449766547)    │ ('fútbol', 1.9984995694408945)     │ ('madrid', 1.987117393125302)     │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  3 │ ('empresas', 0.2081924228026274)   │ ('bacterias', 0.8526743955502922)        │ ('santa', 1.4932507660045458)       │ ('impacto', 1.223675819578249)        │ ('', 1e-05)                │ ('empleados', 2.2119252819406423) │ ('bluetooth', 1.3149923449766547)       │ ('oficial', 1.9091333612278278)    │ ('zaragoza', 1.911770530285215)   │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  4 │ ('director', 0.19947044606966105)  │ ('microorganismos', 0.8526743955502922)  │ ('cruz', 1.4924948943673222)        │ ('inversión', 1.144413883715055)      │ ('', 1e-05)                │ ('cuenta', 1.6624845743142205)    │ ('desconocidas', 1.3149923449766547)    │ ('girona', 1.7296591226240152)     │ ('pasado', 1.5462270503149003)    │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  5 │ ('millones', 0.19253872670923947)  │ ('pesticidas', 0.8526743955502922)       │ ('horas', 1.4749399276596884)       │ ('privada', 1.0264867727153844)       │ ('', 1e-05)                │ ('', 1e-05)                       │ ('contraseñas', 1.1100440568643315)     │ ('financiero', 1.6631726185675195) │ ('año', 1.4997245290742984)       │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  6 │ ('financiera', 0.1885556967188065) │ ('agrícolas', 0.8311372424790837)        │ ('encuentro', 1.4000956862084304)   │ ('servicios', 0.9213875834553661)     │ ('', 1e-05)                │ ('', 1e-05)                       │ ('seguridad', 1.0332613914055109)       │ ('club', 1.657842567008634)        │ ('el', 0.7926617496588141)        │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  7 │ ('agrobank', 0.1885478881278572)   │ ('biológicos', 0.7767598484136475)       │ ('plaza', 1.0481126331604944)       │ ('entidad', 0.8601548525832884)       │ ('', 1e-05)                │ ('', 1e-05)                       │ ('permanentemente', 0.9816544080761019) │ ('caixabank', 0.5264502172113301)  │ ('', 1e-05)                       │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  8 │ ('banca', 0.18750391133544633)     │ ('microbiológica', 0.7121408858703456)   │ ('oficina', 1.0229213999612998)     │ ('filantròpics', 0.8588691739719916)  │ ('', 1e-05)                │ ('', 1e-05)                       │ ('online', 0.9807723968351694)          │ ('', 1e-05)                        │ ('', 1e-05)                       │
├────┼────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────┼───────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┤
│  9 │ ('oficina', 0.1821612918844795)    │ ('biofertilizantes', 0.7121408858703456) │ ('00', 0.6070222897278272)          │ ('banca', 0.8405621256688917)         │ ('', 1e-05)                │ ('', 1e-05)                       │ ('pública', 0.827617531886184)          │ ('', 1e-05)                        │ ('', 1e-05)                       │
╘════╧════════════════════════════════════╧══════════════════════════════════════════╧═════════════════════════════════════╧═══════════════════════════════════════╧════════════════════════════╧═══════════════════════════════════╧═════════════════════════════════════════╧════════════════════════════════════╧═══════════════════════════════════╛


Company 'Colonial'
------------------
╒════╤═════════════════════════════════════════╤════════════════════════════════════╕
│    │ 1                                       │ 2                                  │
╞════╪═════════════════════════════════════════╪════════════════════════════════════╡
│  0 │ ('romanyasociados', 1.0544288296618494) │ ('colonial', 0.41745465693533773)  │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  1 │ ('palacio', 0.8464897283582994)         │ ('madrid', 0.3338675930193332)     │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  2 │ ('martínez', 0.8365321469833034)        │ ('barcelona', 0.33208495807718796) │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  3 │ ('414', 0.8259792252560236)             │ ('capital', 0.32744005401832726)   │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  4 │ ('669', 0.7810113672366127)             │ ('portfolio', 0.3150355080840315)  │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  5 │ ('inmocolonial', 0.7293231641984621)    │ ('euros', 0.31276948708216473)     │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  6 │ ('maria', 0.7001661248786208)           │ ('mercado', 0.2990606656761702)    │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  7 │ ('víctor', 0.6681597837999488)          │ ('assets', 0.29489865943121135)    │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  8 │ ('maría', 0.6681597837999488)           │ ('paris', 0.2890135274937264)      │
├────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  9 │ ('publication', 0.6325831899988328)     │ ('rental', 0.2874769919895624)     │
╘════╧═════════════════════════════════════════╧════════════════════════════════════╛


Company 'Enagas'
----------------
╒════╤══════════════════════════════════════════╤═══════════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╤════════════════════════════════════════╤════════════════════════════════════════╤════════════════════════════════════════╤══════════════════════════════════════════╤═══════════════════════════════════╕
│    │ 0                                        │ 1                                         │ 2                                    │ 3                                    │ 4                                      │ 5                                      │ 6                                      │ 7                                        │ 8                                 │
╞════╪══════════════════════════════════════════╪═══════════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╪════════════════════════════════════════╪════════════════════════════════════════╪════════════════════════════════════════╪══════════════════════════════════════════╪═══════════════════════════════════╡
│  0 │ ('institucionales', 0.32442574691494225) │ ('hidrógeno', 0.4347575220859762)         │ ('euros', 0.5016136220503609)        │ ('generación', 0.7077012018590539)   │ ('demanda', 0.7098841923051494)        │ ('deuda', 0.9105259903503158)          │ ('chile', 0.752797955932652)           │ ('reforestación', 0.603651235527335)     │ ('efqm', 1.1225408791162506)      │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  1 │ ('709', 0.3078111195187096)              │ ('emisiones', 0.33126878848135055)        │ ('dividendo', 0.46127630879378656)   │ ('eléctrica', 0.5694862027093108)    │ ('tránsito', 0.62686068899911)         │ ('financiera', 0.7260755200592796)     │ ('méxico', 0.7199158516063258)         │ ('co₂', 0.5640648318773398)              │ ('center', 0.8900555510763031)    │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  2 │ ('transporte', 0.28157382895816846)      │ ('carbono', 0.2894101640140401)           │ ('rating', 0.45265943542934)         │ ('natural', 0.5421035886646758)      │ ('récord', 0.5017342394509984)         │ ('millones', 0.6407555912441898)       │ ('perú', 0.6285175681922976)           │ ('rural', 0.5510556642736422)            │ ('awards', 0.7831246741754557)    │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  3 │ ('madrid', 0.2749455662674616)           │ ('biometano', 0.2831662495234233)         │ ('bbb', 0.4410157526369533)          │ ('gwh', 0.5117924786857084)          │ ('portugal', 0.48550422172381597)      │ ('préstamo', 0.6377099097816447)       │ ('transportadora', 0.5829179954776881) │ ('hectáreas', 0.5344151996768478)        │ ('micro', 0.5565800635427582)     │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  4 │ ('sostenibilidad', 0.2684086612251522)   │ ('energética', 0.25823652609297826)       │ ('beneficio', 0.4188001707735261)    │ ('electricidad', 0.5090896878425164) │ ('natural', 0.4685583549693729)        │ ('euros', 0.6117795467705234)          │ ('marina', 0.4605570066494205)         │ ('reforestar', 0.5344151996768478)       │ ('valoración', 0.530425333850055) │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  5 │ ('gas', 0.2604014617457386)              │ ('renovables', 0.2564993567532111)        │ ('retribución', 0.37139841978687455) │ ('consumo', 0.494593408975217)       │ ('exportaciones', 0.44948956699633824) │ ('financiero', 0.6076672234365331)     │ ('chilena', 0.4386474151115344)        │ ('verde', 0.49825111728022503)           │ ('fundación', 0.5158050360986381) │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  6 │ ('repsol', 0.25223864446044025)          │ ('infraestructuras', 0.23638479231613455) │ ('inversiones', 0.3710505089764519)  │ ('temperaturas', 0.4920603326742593) │ ('incremento', 0.4363998281290168)     │ ('endeudamiento', 0.5987066091383064)  │ ('latinoamérica', 0.4386474151115344)  │ ('colaboración', 0.41518504099503367)    │ ('categoría', 0.5108901085798551) │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  7 │ ('sistema', 0.25218925940725884)         │ ('residuos', 0.23575691390318265)         │ ('línea', 0.3613423632768126)        │ ('eléctrico', 0.4898284632082734)    │ ('buques', 0.42664456787850513)        │ ('banca', 0.4248811609349678)          │ ('peruano', 0.4386474151115344)        │ ('biodiversidad', 0.41168396874002283)   │ ('green', 0.4952915324543369)     │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  8 │ ('transmission', 0.23998344318870582)    │ ('biogás', 0.2352306161038374)            │ ('accionistas', 0.3537298681323788)  │ ('hidráulica', 0.4534930366789192)   │ ('crecimiento', 0.4202189475296818)    │ ('refinanciación', 0.4248811609349678) │ ('gasoducto', 0.42352624035808756)     │ ('autóctonas', 0.41168396874002283)      │ ('500', 0.4768162497003444)       │
├────┼──────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────┤
│  9 │ ('gasoductos', 0.23692174939173882)      │ ('2050', 0.2352306161038374)              │ ('2014', 0.3366390461649425)         │ ('gas', 0.42971805578776195)         │ ('total', 0.4017054457046177)          │ ('incrementará', 0.4248811609349678)   │ ('infrastructure', 0.4224923117981299) │ ('reforestaciones', 0.41168396874002283) │ ('europeo', 0.4545530019560969)   │
╘════╧══════════════════════════════════════════╧═══════════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╧════════════════════════════════════════╧════════════════════════════════════════╧════════════════════════════════════════╧══════════════════════════════════════════╧═══════════════════════════════════╛


Company 'Endesa'
----------------
╒════╤═════════════════════════════════════╤═══════════════════════════════════════════╤══════════════════════════════════════╤════════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════════╤═══════════════════════════════════════╤════════════════════════════════════════╤═════════════════════════════════════╕
│    │ 0                                   │ 1                                         │ 2                                    │ 3                                      │ 4                                    │ 5                                        │ 6                                     │ 7                                      │ 8                                   │
╞════╪═════════════════════════════════════╪═══════════════════════════════════════════╪══════════════════════════════════════╪════════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════════╪═══════════════════════════════════════╪════════════════════════════════════════╪═════════════════════════════════════╡
│  0 │ ('baloncesto', 0.46749106565973136) │ ('distribución', 0.41952456686397405)     │ ('260', 0.4986177562538292)          │ ('alumnos', 0.3859939299580073)        │ ('agua', 0.5026858701800974)         │ ('emisiones', 0.4767082446594496)        │ ('hoteles', 0.7127826371435294)       │ ('microalgas', 0.799229121514112)      │ ('movilidad', 0.8403693183037144)   │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  1 │ ('portugal', 0.4377566543701949)    │ ('administraciones', 0.41298779884094405) │ ('empleados', 0.48780828759999495)   │ ('profesionales', 0.38428196711974544) │ ('4metering', 0.37812362751306267)   │ ('plan', 0.4605439180916489)             │ ('silken', 0.5596313267833732)        │ ('planta', 0.5966689828584578)         │ ('pagar', 0.5708951650879666)       │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  2 │ ('gasista', 0.432099266478871)      │ ('digitalización', 0.40064766787988204)   │ ('málaga', 0.4601325915965439)       │ ('premios', 0.36490690345982396)       │ ('dispositivo', 0.37812362751306267) │ ('energética', 0.3736479510942551)       │ ('hotelera', 0.45280520192138307)     │ ('biorizon', 0.561196614671964)        │ ('teléfono', 0.49298735826598206)   │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  3 │ ('operador', 0.432099266478871)     │ ('industrias', 0.39546986134667966)       │ ('equipo', 0.4559251068495738)       │ ('participantes', 0.3572890716977674)  │ ('dron', 0.34218854938321513)        │ ('2025', 0.3675518944724258)             │ ('hotels', 0.4434067354634959)        │ ('biotech', 0.561196614671964)         │ ('app', 0.49298735826598206)        │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  4 │ ('español', 0.4281294266208889)     │ ('electrificación', 0.3941784428465724)   │ ('fundación', 0.40567212828668764)   │ ('profesores', 0.3572890716977674)     │ ('visible', 0.34218854938321513)     │ ('ahorro', 0.34243475834010373)          │ ('hotelero', 0.40220575145542997)     │ ('industrial', 0.48638854285530936)    │ ('móvil', 0.49298735826598206)      │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  5 │ ('segundo', 0.4200512115763946)     │ ('green', 0.3897893214425247)             │ ('techpark', 0.378317397435559)      │ ('robótica', 0.31458861527472964)      │ ('monitorizan', 0.34218854938321513) │ ('descarbonización', 0.3419525548735671) │ ('co2', 0.3978859729514501)           │ ('miel', 0.4508890629838906)           │ ('juicepass', 0.49298735826598206)  │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  6 │ ('europa', 0.4093083473521131)      │ ('naciones', 0.3897893214425247)          │ ('circular', 0.36794940422541317)    │ ('talent', 0.31458861527472964)        │ ('ecológico', 0.34218854938321513)   │ ('ucrania', 0.3326215037652653)          │ ('bilbao', 0.37753651875518396)       │ ('biotecnología', 0.40686482407949404) │ ('reservar', 0.49298735826598206)   │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  7 │ ('madrid', 0.3954294311226427)      │ ('power', 0.38444312982592044)            │ ('colaboración', 0.3407891621084168) │ ('vocaciones', 0.31458861527472964)    │ ('municipal', 0.34218854938321513)   │ ('reducción', 0.32419669939234874)       │ ('turismo', 0.37753651875518396)      │ ('pescado', 0.40686482407949404)       │ ('transporte', 0.46613395036249444) │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  8 │ ('deporte', 0.37234783528110993)    │ ('energías', 0.38444312982592044)         │ ('innovación', 0.33093888448261444)  │ ('premio', 0.3074381262983713)         │ ('sensores', 0.34218854938321513)    │ ('fuel', 0.3183092778222179)             │ ('sostenible', 0.33591284428577345)   │ ('bacterias', 0.40686482407949404)     │ ('eléctricos', 0.4300616104391135)  │
├────┼─────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┤
│  9 │ ('compañía', 0.32092262544205896)   │ ('hogares', 0.3793941062407368)           │ ('donación', 0.3306483933327969)     │ ('educación', 0.2922322091853205)      │ ('señalizar', 0.34218854938321513)   │ ('2030', 0.3183092778222179)             │ ('alojamientos', 0.32601560218394043) │ ('biomasa', 0.40686482407949404)       │ ('usuarios', 0.40530855239588454)   │
╘════╧═════════════════════════════════════╧═══════════════════════════════════════════╧══════════════════════════════════════╧════════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════════╧═══════════════════════════════════════╧════════════════════════════════════════╧═════════════════════════════════════╛


Company 'Ferrovial'
-------------------
╒════╤══════════════════════════════════════╤════════════════════════════════════════╤═════════════════════════════════════╤═══════════════════════════════════════════╤════════════════════════════════════╤════════════════════════════════════════╤═══════════════════════════════════════╤════════════════════════════════════╤═════════════════════════════════════╕
│    │ 0                                    │ 1                                      │ 2                                   │ 3                                         │ 4                                  │ 5                                      │ 6                                     │ 7                                  │ 8                                   │
╞════╪══════════════════════════════════════╪════════════════════════════════════════╪═════════════════════════════════════╪═══════════════════════════════════════════╪════════════════════════════════════╪════════════════════════════════════════╪═══════════════════════════════════════╪════════════════════════════════════╪═════════════════════════════════════╡
│  0 │ ('euros', 0.2757709678820154)        │ ('autopistas', 0.38951896620190335)    │ ('aeropuertos', 0.6020896543265191) │ ('deuda', 0.8110518487038015)             │ ('sheffield', 0.5746597230288893)  │ ('agua', 0.8647607019021388)           │ ('pandemia', 0.698014705891484)       │ ('chile', 1.054519015132198)       │ ('hyperloop', 1.1919738899680448)   │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  1 │ ('servicios', 0.2689792783469789)    │ ('tráfico', 0.3839096289887447)        │ ('heathrow', 0.5267830371900037)    │ ('bonos', 0.6333805215885289)             │ ('carreteras', 0.5576487212681813) │ ('saneamiento', 0.7732483477366972)    │ ('usuarios', 0.6124350788453162)      │ ('estación', 0.7353500452694636)   │ ('hyperlooptt', 1.0849867255535024) │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  2 │ ('ferrovial', 0.259981297873195)     │ ('movilidad', 0.36613393421276946)     │ ('aeropuerto', 0.5261170717489929)  │ ('pabs', 0.4536951921828161)              │ ('ministerio', 0.5062785887535135) │ ('áfrica', 0.6397744240881916)         │ ('balcones', 0.6037445868239821)      │ ('minero', 0.7353500452694636)     │ ('tecnología', 0.7535909652968288)  │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  3 │ ('negocio', 0.25424519258813855)     │ ('tráficos', 0.36581343944785205)      │ ('denver', 0.4362932772221365)      │ ('bbb', 0.4468606994072411)               │ ('británico', 0.4820335248492046)  │ ('comunidades', 0.6345132749816716)    │ ('donado', 0.5434007245077811)        │ ('chilena', 0.6555831878480383)    │ ('experiencia', 0.6451055908790327) │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  4 │ ('etr', 0.2530720862573871)          │ ('transporte', 0.31359255889384474)    │ ('tráfico', 0.41850511793769857)    │ ('pagos', 0.4215741469399162)             │ ('británica', 0.4414626229892304)  │ ('abastecimiento', 0.6071345325400177) │ ('social', 0.5316888525524874)        │ ('steel', 0.6004107977475657)      │ ('lakes', 0.6323329649683499)       │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  5 │ ('comparables', 0.2323829875792988)  │ ('kilómetros', 0.3029885482811803)     │ ('airport', 0.3946421179364561)     │ ('infraestructuras', 0.40745831788120085) │ ('escocia', 0.43098403472229535)   │ ('desarrollo', 0.5829295765307607)     │ ('investigación', 0.5237716702382311) │ ('santiago', 0.5815749129735981)   │ ('pittsburgh', 0.6323329649683499)  │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  6 │ ('millones', 0.23215881768385394)    │ ('vehículos', 0.29258712278741555)     │ ('viajeros', 0.38665550310753705)   │ ('private', 0.4056370712099181)           │ ('yorkshire', 0.4215741469399162)  │ ('etiopía', 0.5464518474467481)        │ ('sanitario', 0.5228581495869081)     │ ('edificio', 0.565894439636476)    │ ('transporte', 0.5942328940631202)  │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  7 │ ('explotación', 0.2273036712862618)  │ ('lanes', 0.2914653094981755)          │ ('regionales', 0.31983432394223676) │ ('bancaria', 0.3732431226950224)          │ ('viviendas', 0.4056370712099181)  │ ('vulnerables', 0.5464518474467481)    │ ('ciudades', 0.476583996935538)       │ ('ingeniería', 0.5524623289056809) │ ('pilotes', 0.4798291870253022)     │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  8 │ ('liquidez', 0.2273036712862618)     │ ('texas', 0.2735627714876883)          │ ('ventas', 0.3022405810819354)      │ ('refinanciación', 0.3653059162978117)    │ ('contratos', 0.4019305588272274)  │ ('burkina', 0.4687586029838825)        │ ('ventanas', 0.4661412815619037)      │ ('plantas', 0.5407139341876593)    │ ('motor', 0.4798291870253022)       │
├────┼──────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────────┼────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────┤
│  9 │ ('crecimiento', 0.22202244511922412) │ ('restricciones', 0.25110438517101513) │ ('awards', 0.29939043974113866)     │ ('citibank', 0.3616357216047931)          │ ('urbanos', 0.3653059162978117)    │ ('pobreza', 0.4687586029838825)        │ ('vacunas', 0.4661412815619037)       │ ('incorporan', 0.4974720052248505) │ ('león', 0.4798291870253022)        │
╘════╧══════════════════════════════════════╧════════════════════════════════════════╧═════════════════════════════════════╧═══════════════════════════════════════════╧════════════════════════════════════╧════════════════════════════════════════╧═══════════════════════════════════════╧════════════════════════════════════╧═════════════════════════════════════╛


Company 'Grifols'
-----------------
╒════╤══════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════════════╤═════════════════════════════════════╤══════════════════════════════════════╤═══════════════════════════════════════════╤══════════════════════════════════╤══════════════════════════════════════════╤══════════════════════════════════════╕
│    │ 0                                    │ 1                                     │ 2                                         │ 3                                   │ 4                                    │ 5                                         │ 6                                │ 7                                        │ 8                                    │
╞════╪══════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════════════╪═════════════════════════════════════╪══════════════════════════════════════╪═══════════════════════════════════════════╪══════════════════════════════════╪══════════════════════════════════════════╪══════════════════════════════════════╡
│  0 │ ('euros', 0.24698876534821043)       │ ('bioscience', 0.3749364260419097)    │ ('inmunoglobulina', 0.5518134788300703)   │ ('alzheimer', 0.8143842005589285)   │ ('virus', 0.8040945684318178)        │ ('duomocomunicacion', 1.3090122395973953) │ ('europa', 1.0180659913411092)   │ ('latinoamérica', 0.9077406130255158)    │ ('cursos', 1.2576907876382046)       │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  1 │ ('mercado', 0.24130814847993196)     │ ('cc', 0.34047553053947843)           │ ('inmunoglobulinas', 0.41793929921992146) │ ('alzhéimer', 0.6493176233241393)   │ ('detección', 0.7373877345947059)    │ ('comunicación', 1.1398084882570718)      │ ('europeos', 0.9731747491218136) │ ('chile', 0.6901717560031014)            │ ('ética', 0.971379699165769)         │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  2 │ ('compañía', 0.22658387794463522)    │ ('farmacéutico', 0.33774340337662745) │ ('transfusional', 0.40162378440356267)    │ ('polio', 0.5475362140100559)       │ ('zika', 0.6866892417197287)         │ ('tel', 1.101643901888187)                │ ('alemania', 0.8831479598321976) │ ('argentina', 0.6901717560031014)        │ ('seminarios', 0.9186193972488197)   │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  3 │ ('inversiones', 0.22506443709557095) │ ('empresarial', 0.31958807214079055)  │ ('sangre', 0.38622990709951954)           │ ('replacement', 0.5246673888673624) │ ('panther', 0.6292266938524669)      │ ('prensa', 0.923990215503202)             │ ('unión', 0.8261644561800502)    │ ('méxico', 0.6599556571621127)           │ ('bioética', 0.8621212567809375)     │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  4 │ ('plasma', 0.2223779692419093)       │ ('hospitales', 0.30585019776625993)   │ ('sanguíneo', 0.38489798392914576)        │ ('albumin', 0.5163985697372199)     │ ('hepatitis', 0.5631891850520411)    │ ('medios', 0.7560634176821833)            │ ('turquía', 0.7817111377383773)  │ ('latina', 0.6373869552645735)           │ ('aulas', 0.7843906508748405)        │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  5 │ ('deuda', 0.2198495369067919)        │ ('hospitalaria', 0.2988228642040625)  │ ('transfusiones', 0.3774647523848813)     │ ('pacientes', 0.466081769102937)    │ ('test', 0.5023670651399755)         │ ('media', 0.6842878116496848)             │ ('europeo', 0.7119536944547001)  │ ('américa', 0.6193661948313722)          │ ('disciplinas', 0.7843906508748405)  │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  6 │ ('cc', 0.2145226289210614)           │ ('sector', 0.2983882899437153)        │ ('virológico', 0.3594684896359301)        │ ('disease', 0.4395728270687474)     │ ('wnv', 0.4766959487174422)          │ ('659', 0.6823827678169095)               │ ('europea', 0.6985876615844642)  │ ('latinoamericanos', 0.6193661948313722) │ ('anatomía', 0.7843906508748405)     │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  7 │ ('2017', 0.2129918487768406)         │ ('pyxis', 0.296363360029789)          │ ('intravenosa', 0.3354660768028906)       │ ('trials', 0.4395728270687474)      │ ('sangre', 0.45797062776190123)      │ ('office', 0.5946989862374678)            │ ('alemán', 0.6878142757689215)   │ ('brasil', 0.5387286593062924)           │ ('interactivos', 0.7843906508748405) │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  8 │ ('centros', 0.20516073703093599)     │ ('90', 0.2932560978175877)            │ ('donaciones', 0.3248491568190435)        │ ('muscular', 0.41464859999063597)   │ ('genético', 0.41914030603128993)    │ ('press', 0.5679555293298573)             │ ('berlín', 0.6878142757689215)   │ ('española', 0.5204625883998365)         │ ('profesorado', 0.7843906508748405)  │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  9 │ ('inversores', 0.20492136365723546)  │ ('biológicos', 0.28539589856801323)   │ ('hemofilia', 0.31702140924689004)        │ ('debilidad', 0.41464859999063597)  │ ('autoinmunes', 0.40704109515183057) │ ('información', 0.5415047687560309)       │ ('europa1', 0.6449467416884517)  │ ('latinoamericano', 0.5204625883998365)  │ ('conferencias', 0.7843906508748405) │
╘════╧══════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════════════╧═════════════════════════════════════╧══════════════════════════════════════╧═══════════════════════════════════════════╧══════════════════════════════════╧══════════════════════════════════════════╧══════════════════════════════════════╛


Company 'IAG'
-------------
╒════╤════════════════════════════════════════╤═════════════════════════════════════╤════════════════════════════════╤═════════════════════════════════════╤════════════════════════════════════════╤════════════════════════════════════╤═══════════════════════════════════╤════════════════════════════════════════╤═══════════════════════════════════╕
│    │ 0                                      │ 1                                   │ 2                              │ 3                                   │ 4                                      │ 5                                  │ 6                                 │ 7                                      │ 8                                 │
╞════╪════════════════════════════════════════╪═════════════════════════════════════╪════════════════════════════════╪═════════════════════════════════════╪════════════════════════════════════════╪════════════════════════════════════╪═══════════════════════════════════╪════════════════════════════════════════╪═══════════════════════════════════╡
│  0 │ ('información', 0.3684639695132432)    │ ('euros', 0.44520502908704074)      │ ('lse', 0.42937106235296085)   │ ('vuelos', 0.6104416181716096)      │ ('latinoamérica', 0.41844860482905005) │ ('aumentaron', 0.876528373308113)  │ ('airbus', 0.907162932123856)     │ ('seguridad', 1.1225656654718974)      │ ('dism', 3.9395437300114104)      │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  1 │ ('previsiones', 0.352214208844286)     │ ('gastos', 0.44249989091692116)     │ ('bolsa', 0.4282319099794615)  │ ('british', 0.5596513007436023)     │ ('norteamérica', 0.4098896266811746)   │ ('inflación', 0.6367568026663706)  │ ('aviones', 0.7316212115099239)   │ ('procedimientos', 0.8695356254793811) │ ('increme', 2.3939255479416053)   │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  2 │ ('futuros', 0.3507453634107444)        │ ('crédito', 0.4358487245114579)     │ ('madrid', 0.4196675328627366) │ ('airways', 0.5359953660414929)     │ ('áfrica', 0.4017032673958128)         │ ('ingresos', 0.6316649412367036)   │ ('747', 0.7102239182310619)       │ ('mitigación', 0.7672642222796996)     │ ('capacidad', 1.1322237563375361) │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  3 │ ('compañía', 0.34896022612326594)      │ ('combustible', 0.4071812103641225) │ ('13', 0.3501353218482851)     │ ('rutas', 0.5228856029481808)       │ ('oriente', 0.3815924988471783)        │ ('incremento', 0.5839615618900347) │ ('qatar', 0.6938268004783473)     │ ('reguladores', 0.7447581146482077)    │ ('la', 1.006421209764884)         │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  4 │ ('riesgos', 0.31468024864018174)       │ ('ingresos', 0.38269568409840865)   │ ('10', 0.3357086739217946)     │ ('iberia', 0.4871139329300179)      │ ('europa', 0.37990332277505345)        │ ('premium', 0.5697837553486165)    │ ('avión', 0.6049657067001871)     │ ('proteger', 0.7099728651987663)       │ ('', 1e-05)                       │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  5 │ ('podrían', 0.29848474759965027)       │ ('costes', 0.37110348274069394)     │ ('11', 0.3244122751892863)     │ ('barcelona', 0.46584394477925734)  │ ('evolución', 0.3405875272165799)      │ ('aumento', 0.5049042285358516)    │ ('a320', 0.5740166301652687)      │ ('proactivamente', 0.6296633562975665) │ ('', 1e-05)                       │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  6 │ ('incertidumbres', 0.2971401690012286) │ ('impuestos', 0.35890621605927614)  │ ('05', 0.298540758487175)      │ ('aeropuerto', 0.4437104976429366)  │ ('iagshares', 0.33819072219762397)     │ ('yield', 0.48480370853997407)     │ ('airways', 0.5520081829390688)   │ ('reabrir', 0.6296633562975665)        │ ('', 1e-05)                       │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  7 │ ('factores', 0.2956005488803124)       │ ('liquidez', 0.357471697467086)     │ ('29', 0.2951468112427509)     │ ('aeropuertos', 0.4190822008422456) │ ('73', 0.330930763245291)              │ ('holidays', 0.4314333898382944)   │ ('pilotos', 0.5516460858309383)   │ ('protegidos', 0.6296633562975665)     │ ('', 1e-05)                       │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  8 │ ('reglamento', 0.2918757698272214)     │ ('líneas', 0.33234755489348883)     │ ('03', 0.2914679537633579)     │ ('vuelo', 0.3852643055512831)       │ ('oneworld', 0.327842563575347)        │ ('costes', 0.40895247741264035)    │ ('aeronaves', 0.5022961447109497) │ ('preservación', 0.6296633562975665)   │ ('', 1e-05)                       │
├────┼────────────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────┼─────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────┤
│  9 │ ('tráfico', 0.28407032307814245)       │ ('pérdidas', 0.29954636665333334)   │ ('43', 0.2752292495771911)     │ ('horarios', 0.38256795808368077)   │ ('acumulado', 0.32682832822733165)     │ ('2015', 0.4020460359866628)       │ ('cargo', 0.47363101641233407)    │ ('teletrabajado', 0.6296633562975665)  │ ('', 1e-05)                       │
╘════╧════════════════════════════════════════╧═════════════════════════════════════╧════════════════════════════════╧═════════════════════════════════════╧════════════════════════════════════════╧════════════════════════════════════╧═══════════════════════════════════╧════════════════════════════════════════╧═══════════════════════════════════╛


Company 'Iberdrola'
-------------------
╒════╤═════════════════════════════════════╤═══════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════════╤═══════════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════════╕
│    │ 0                                   │ 1                                     │ 2                                    │ 3                                       │ 4                                         │ 5                                    │ 6                                       │ 7                                     │ 8                                     │
╞════╪═════════════════════════════════════╪═══════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════════╪═══════════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════════╡
│  0 │ ('millones', 0.24975523732180208)   │ ('dividendo', 0.5790081804657976)     │ ('voluntariado', 0.9106689480150152) │ ('kwh', 0.8268211400510966)             │ ('movilidad', 0.8098785568298968)         │ ('biodiversidad', 0.675579187692852) │ ('hotels', 0.3935892578794116)          │ ('residuos', 0.893059273161647)       │ ('solar', 0.7269839667536826)         │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  1 │ ('euros', 0.24383371052028444)      │ ('financiación', 0.49359047222230623) │ ('voluntarios', 0.6805891555905136)  │ ('carbono', 0.7655299022979948)         │ ('vehículos', 0.5978496628631681)         │ ('migración', 0.5956080813421653)    │ ('resorts', 0.3935892578794116)         │ ('reciclaje', 0.7992953522256057)     │ ('port', 0.6801895333804546)          │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  2 │ ('renovables', 0.23960245078182707) │ ('crédito', 0.48364724956762467)      │ ('alimentación', 0.6212900548505292) │ ('emisiones', 0.7151963378039878)       │ ('transporte', 0.5370738181042746)        │ ('conservación', 0.5758427706365269) │ ('hoteles', 0.3847724805067786)         │ ('energyloop', 0.6931734688845206)    │ ('fotovoltaica', 0.6705257258133476)  │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  3 │ ('energía', 0.2348871913618475)     │ ('retribución', 0.43516236473231096)  │ ('solidarias', 0.559819504570234)    │ ('co2', 0.6967990115400047)             │ ('interoperabilidad', 0.5253483043474783) │ ('birdlife', 0.52522476720377)       │ ('competitividad', 0.37240883415558507) │ ('reutilización', 0.6145086573463524) │ ('australia', 0.5713996701757501)     │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  4 │ ('energética', 0.23218063400421088) │ ('bonos', 0.4307998621181309)         │ ('discapacidad', 0.5286692255675819) │ ('2050', 0.6276284703273851)            │ ('cargadores', 0.4978962288585834)        │ ('especies', 0.5033807040970194)     │ ('fibra', 0.37061404881281934)          │ ('economía', 0.5616719402015272)      │ ('210', 0.5369275715227925)           │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  5 │ ('climático', 0.2161018706787772)   │ ('verdes', 0.41617961293533906)       │ ('packs', 0.49366534500581405)       │ ('gco2', 0.5216149322131776)            │ ('transport', 0.4555363777378091)         │ ('hábitats', 0.5033807040970194)     │ ('óptica', 0.37061404881281934)         │ ('ambiente', 0.5528151160427096)      │ ('solares', 0.4984451477723457)       │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  6 │ ('hidrógeno', 0.20980454305607615)  │ ('accionistas', 0.3966933419060772)   │ ('refugiados', 0.49366534500581405)  │ ('50', 0.47726952232043296)             │ ('ciudades', 0.43025715181586527)         │ ('ecología', 0.4592518949946941)     │ ('renovable', 0.34461217280468986)      │ ('circularidad', 0.5017442176737843)  │ ('híbrida', 0.4570493074499881)       │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  7 │ ('sostenible', 0.20583071804485562) │ ('deuda', 0.3964562276845974)         │ ('familias', 0.4316566151176394)     │ ('reducción', 0.4406177176849532)       │ ('electrificación', 0.4102858171889778)   │ ('ecosistemas', 0.44785002969836285) │ ('pagos', 0.3262367584369604)           │ ('consumo', 0.4390168520329225)       │ ('hidráulica', 0.4383995263541871)    │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  8 │ ('energías', 0.20221891740927886)   │ ('flexible', 0.3735362644420842)      │ ('ucrania', 0.40988128111083016)     │ ('medioambiental', 0.42625794267735967) │ ('networks', 0.40512174011455104)         │ ('reforestación', 0.442352852274592) │ ('euroforo', 0.3233508252036159)        │ ('tecnologías', 0.43168840683756043)  │ ('fotovoltaicas', 0.4383995263541871) │
├────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  9 │ ('alemania', 0.2012291397451235)    │ ('préstamo', 0.31794798649711903)     │ ('humanitario', 0.40556771681752674) │ ('dióxido', 0.4149134317368213)         │ ('autovías', 0.40512174011455104)         │ ('plantará', 0.43149516530948967)    │ ('energética', 0.30813075119274486)     │ ('eficientes', 0.41611006670935086)   │ ('paneles', 0.42446982112584264)      │
╘════╧═════════════════════════════════════╧═══════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════════╧═══════════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════════╛


Company 'Inditex'
-----------------
╒════╤═══════════════════════════════════════╤═══════════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════╤════════════════════════════════╤════════════════════════════════════════════════════════════════════════════════════════╤════════════════════════════════════╤═══════════════════════════════════════╤═════════════════════════════════════════╕
│    │ 0                                     │ 1                                         │ 2                                       │ 3                                    │ 4                              │ 5                                                                                      │ 6                                  │ 7                                     │ 8                                       │
╞════╪═══════════════════════════════════════╪═══════════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════╪════════════════════════════════╪════════════════════════════════════════════════════════════════════════════════════════╪════════════════════════════════════╪═══════════════════════════════════════╪═════════════════════════════════════════╡
│  0 │ ('euros', 0.2814706364829605)         │ ('sostenibilidad', 0.49550142751203713)   │ ('discapacidad', 0.48648995463795314)   │ ('industriall', 0.6314109982513502)  │ ('rights', 2.68404092862818)   │ ('inditexequiposúnete', 0.6528573688673364)                                            │ ('2007', 0.7262462406697984)       │ ('fachada', 0.7493505644100181)       │ ('rfid', 0.7585394593346165)            │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  1 │ ('millones', 0.27833793000321)        │ ('algodón', 0.3599307015124135)           │ ('organizaciones', 0.35991256009786804) │ ('trabajadores', 0.606028029792424)  │ ('reserved', 2.68404092862818) │ ('modeloliderazgo', 0.6528573688673364)                                                │ ('malta', 0.6520894709539524)      │ ('interior', 0.7296195541667003)      │ ('sistema', 0.7091308198584428)         │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  2 │ ('ventas', 0.27393186008210085)       │ ('sustainability', 0.35141724315414186)   │ ('cogami', 0.3460829724910952)          │ ('sindicatos', 0.47881063608486274)  │ ('ver', 0.7253067502704038)    │ ('alláreportinginversoresinformación', 0.6528573688673364)                             │ ('eslovenia', 0.6520894709539524)  │ ('luz', 0.7155892830464637)           │ ('barcos', 0.597463079955699)           │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  3 │ ('tiendas', 0.2693686741474315)       │ ('textil', 0.3384883210716874)            │ ('refugiados', 0.33704759830984393)     │ ('union', 0.4662031623417315)        │ ('anexo', 0.6458081544304043)  │ ('corporativomemoria', 0.6528573688673364)                                             │ ('bulgaria', 0.6520894709539524)   │ ('decorativo', 0.557255467577131)     │ ('embarcaciones', 0.5149402675170124)   │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  4 │ ('crecimiento', 0.2513112981871209)   │ ('100', 0.33704423264000843)              │ ('sociales', 0.3219355497624395)        │ ('producción', 0.4581141298186276)   │ ('', 1e-05)                    │ ('privacidadcopyright', 0.6528573688673364)                                            │ ('unión', 0.6520894709539524)      │ ('escalera', 0.557255467577131)       │ ('radiofrecuencia', 0.5149402675170124) │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  5 │ ('online', 0.24768889566365332)       │ ('sostenible', 0.3150895439885787)        │ ('mujeres', 0.320410572121287)          │ ('laborales', 0.42558331399134885)   │ ('', 1e-05)                    │ ('multimediainformacióncontactocookieslegalaccesibilidadpolítica', 0.6528573688673364) │ ('bálticos', 0.6520894709539524)   │ ('paredes', 0.557255467577131)        │ ('codifica', 0.5149402675170124)        │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  6 │ ('mercados', 0.24381893426549228)     │ ('sostenibles', 0.31204232509053564)      │ ('médicos', 0.31713852942161025)        │ ('textil', 0.4176391191110278)       │ ('', 1e-05)                    │ ('2022', 0.581095612368094)                                                            │ ('finlandia', 0.6520894709539524)  │ ('transparencia', 0.5279136941895591) │ ('alarma', 0.5149402675170124)          │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  7 │ ('beneficio', 0.23625429962570152)    │ ('2025', 0.29834738663558036)             │ ('empleo', 0.3142856792134247)          │ ('sindicales', 0.4173995293799743)   │ ('', 1e-05)                    │ ('onlinegruponuestro', 0.3509744065259557)                                             │ ('finales', 0.6520894709539524)    │ ('tienda', 0.43509852697276663)       │ ('tripulaciones', 0.5149402675170124)   │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  8 │ ('stradivarius', 0.23287269580417339) │ ('medioambientales', 0.28802941125082815) │ ('camboya', 0.30768095424540276)        │ ('europea', 0.4029642828765075)      │ ('', 1e-05)                    │ ('mercado', 0.30712163737557374)                                                       │ ('república', 0.6038209865323718)  │ ('mural', 0.4255379773343351)         │ ('dispositivo', 0.5149402675170124)     │
├────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────┼────────────────────────────────────────────────────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┤
│  9 │ ('dividendo', 0.2271195836076165)     │ ('reciclaje', 0.28802941125082815)        │ ('apoyar', 0.28365732402841504)         │ ('conferencia', 0.37713486599859786) │ ('', 1e-05)                    │ ('rusa', 0.2984943701987365)                                                           │ ('eslovaquia', 0.6038209865323718) │ ('multimedia', 0.4255379773343351)    │ ('seguridad', 0.4890380073407769)       │
╘════╧═══════════════════════════════════════╧═══════════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════╧════════════════════════════════╧════════════════════════════════════════════════════════════════════════════════════════╧════════════════════════════════════╧═══════════════════════════════════════╧═════════════════════════════════════════╛


Company 'Acciona'
-----------------
╒════╤═══════════════════════════════════════════╤═════════════════════════════════════╤═════════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════════╤═════════════════════════════════════╤══════════════════════════════════════╕
│    │ 0                                         │ 1                                   │ 2                                       │ 3                                       │ 4                                    │ 5                                    │ 6                                       │ 7                                   │ 8                                    │
╞════╪═══════════════════════════════════════════╪═════════════════════════════════════╪═════════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════════╪═════════════════════════════════════╪══════════════════════════════════════╡
│  0 │ ('millones', 0.2505288629990973)          │ ('movilidad', 0.40538198095911565)  │ ('emisiones', 0.44651696082887665)      │ ('agua', 0.6229371121669434)            │ ('paperchain', 0.6334755399597033)   │ ('2019', 0.9527891872027224)         │ ('cáncer', 1.2514244261257896)          │ ('aeropuertos', 0.8776666050624083) │ ('ibex', 1.0480426629405448)         │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  1 │ ('australia', 0.24697522017882434)        │ ('vehículos', 0.39427361944248557)  │ ('hidrógeno', 0.4192577748308222)       │ ('aguas', 0.446088235851643)            │ ('reciclaje', 0.5806912502773117)    │ ('previsto', 0.7422170839261031)     │ ('cánceres', 0.7169689795035572)        │ ('aeropuerto', 0.8621551425448685)  │ ('interacciones', 1.001872474725157) │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  2 │ ('construcción', 0.24105843810118163)     │ ('motosharing', 0.3601835511264177) │ ('renovable', 0.40891385279123516)      │ ('población', 0.3525538429225873)       │ ('fibra', 0.5545250582473978)        │ ('2021', 0.7090526581142899)         │ ('detección', 0.6095848116844165)       │ ('chile', 0.8410054098435812)       │ ('seguidores', 0.9567276795338667)   │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  3 │ ('test', 0.24004231643533233)             │ ('silence', 0.34021950369582055)    │ ('renovables', 0.36692654612584524)     │ ('water', 0.3385259832146764)           │ ('durabilidad', 0.5175548076746929)  │ ('verano', 0.705324843756888)        │ ('regular', 0.5854027203958954)         │ ('airport', 0.8353926608540949)     │ ('facebook', 0.8743533939513604)     │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  4 │ ('mujeres', 0.2269321013048889)           │ ('5g', 0.33558986648149225)         │ ('baterías', 0.32687946802892065)       │ ('planta', 0.3048200318046956)          │ ('acero', 0.48023278747729203)       │ ('2025', 0.6654704618042354)         │ ('mortalidad', 0.5854027203958954)      │ ('aerolínea', 0.693786501433234)    │ ('corporativas', 0.8270070053735041) │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  5 │ ('scaleups', 0.22000545650815806)         │ ('virtual', 0.321179953123071)      │ ('green', 0.3250904113960452)           │ ('saneamiento', 0.2937744454280785)     │ ('placas', 0.47108809869903384)      │ ('finalice', 0.6578297538257213)     │ ('diagnóstico', 0.5653456454870484)     │ ('services', 0.6475532449572977)    │ ('instagram', 0.7986720816039325)    │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  6 │ ('puente', 0.21288694342961625)           │ ('usuarios', 0.29713781588164007)   │ ('energética', 0.3207784176555255)      │ ('sistema', 0.28620925336584113)        │ ('materiales', 0.46817111649840293)  │ ('comenzarán', 0.6289774975655846)   │ ('riesgo', 0.5190952133250634)          │ ('santiago', 0.6402504914339308)    │ ('sociales', 0.7957303563127219)     │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  7 │ ('infraestructuras', 0.21262003386953168) │ ('drones', 0.2836069697432323)      │ ('aerogeneradores', 0.2976086035323679) │ ('abastecimiento', 0.26221410980764503) │ ('resistencia', 0.45764614359690964) │ ('2020', 0.6198048926670459)         │ ('casos', 0.49772391452579784)          │ ('dominicana', 0.5838160688036916)  │ ('linkedin', 0.7062231723568404)     │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  8 │ ('túnel', 0.20682617847969992)            │ ('scooters', 0.2836069697432323)    │ ('fotovoltaicos', 0.297061869291539)    │ ('depuración', 0.261527526654468)       │ ('demolición', 0.45764614359690964)  │ ('completarán', 0.6074274631275477)  │ ('ultrasonido', 0.46175801783526266)    │ ('clientes', 0.5318985239258218)    │ ('youtube', 0.6752483922907437)      │
├────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┤
│  9 │ ('proyectos', 0.1998325558400932)         │ ('tráfico', 0.26499644481463047)    │ ('turbinas', 0.2778759343908905)        │ ('desalinización', 0.2548593463196397)  │ ('corrosión', 0.4375738927831838)    │ ('ferroviarias', 0.5347722710022075) │ ('diagnosticaron', 0.46175801783526266) │ ('agente', 0.5312879151091474)      │ ('promedio', 0.6050877135709357)     │
╘════╧═══════════════════════════════════════════╧═════════════════════════════════════╧═════════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════════╧═════════════════════════════════════╧══════════════════════════════════════╛


Company 'Arcelormittal'
-----------------------
╒════╤═════════════════════════════════════╤═══════════════════════════════════╤══════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════════════╤═════════════════════════════════════════╤════════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════════╕
│    │ 0                                   │ 1                                 │ 2                                    │ 3                                     │ 4                                         │ 5                                       │ 6                                      │ 7                                    │ 8                                       │
╞════╪═════════════════════════════════════╪═══════════════════════════════════╪══════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════════════╪═════════════════════════════════════════╪════════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════════╡
│  0 │ ('prevalecerá', 1.405661171226733)  │ ('prensa', 0.942946179658484)     │ ('deck', 0.7528344483986861)         │ ('3d', 0.40514648280255106)           │ ('hidrógeno', 0.501038947044809)          │ ('carbono', 0.3151771177782121)         │ ('presentación', 1.0187912355056736)   │ ('corporate', 0.7626153940707858)    │ ('capital', 0.681100759866447)          │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  1 │ ('texto', 1.405661171226733)        │ ('comunicado', 0.942946179658484) │ ('magnelis', 0.7282957905502708)     │ ('diseño', 0.34450448843920123)       │ ('hydrogen', 0.43864611496488354)         │ ('emisiones', 0.30379194670466797)      │ ('trimestre', 0.9564170100974829)      │ ('www', 0.7223925440978453)          │ ('gobiernos', 0.6483949122184204)       │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  2 │ ('documentos', 1.405661171226733)   │ ('traducción', 0.942946179658484) │ ('panel', 0.6667486663439047)        │ ('printing', 0.3439726127793671)      │ ('energy', 0.3946654424623685)            │ ('co2', 0.25426789659696547)            │ ('mayo', 0.767712509019773)            │ ('investors', 0.6727504322178947)    │ ('31', 0.6108891893436349)              │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  3 │ ('discrepancia', 1.405661171226733) │ ('español', 0.9305203831903138)   │ ('ondatherm', 0.6087834266132233)    │ ('steel', 0.34250208891348)           │ ('renovable', 0.38736982257596775)        │ ('acero', 0.2405991168285811)           │ ('2022', 0.7382953306933444)           │ ('luxemburgo', 0.6588041422656674)   │ ('100', 0.5373898449725139)             │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  4 │ ('ambos', 1.405661171226733)        │ ('documento', 0.8969162610076392) │ ('fm', 0.6087834266132233)           │ ('chassis', 0.32848463082542484)      │ ('green', 0.3790171461857017)             │ ('proyectos', 0.23963041823991416)      │ ('transparencia', 0.676081030181978)   │ ('web', 0.6418421414055413)          │ ('mineras', 0.512987802525737)          │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  5 │ ('caso', 1.3073946578198514)        │ ('publicado', 0.8770269984915795) │ ('protección', 0.5152409140662415)   │ ('material', 0.3231379500310898)      │ ('industrial', 0.3742561804977751)        │ ('inversiones', 0.23754577853906292)    │ ('voto', 0.6517461339067838)           │ ('library', 0.5493316153863876)      │ ('reestructuración', 0.512987802525737) │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  6 │ ('original', 1.1794083568574512)    │ ('http', 0.8770269984915795)      │ ('corrosión', 0.4816485545266027)    │ ('components', 0.2781724374027893)    │ ('renewable', 0.3567776822886618)         │ ('sostenibilidad', 0.23336577080241164) │ ('notificaciones', 0.6350544962053228) │ ('abuso', 0.5493316153863876)        │ ('consolidado', 0.512987802525737)      │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  7 │ ('inglés', 1.1606240446737406)      │ ('inglés', 0.7785702780633711)    │ ('resistencia', 0.4816485545266027)  │ ('aluminio', 0.2781724374027893)      │ ('gw', 0.31974561077423125)               │ ('climático', 0.23336577080241164)      │ ('derechos', 0.631487850487457)        │ ('transactions', 0.5493316153863876) │ ('bancario', 0.512987802525737)         │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  8 │ ('en', 0.9921803431909574)          │ ('com', 0.7725264831832752)       │ ('superficies', 0.46087332694511546) │ ('technological', 0.2781724374027893) │ ('descarbonización', 0.31006273090204955) │ ('2020', 0.23017648144894756)           │ ('accionistas', 0.5855033471543467)    │ ('share', 0.529558944235543)         │ ('filiales', 0.512987802525737)         │
├────┼─────────────────────────────────────┼───────────────────────────────────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┤
│  9 │ ('', 1e-05)                         │ ('corporate', 0.755317471223321)  │ ('hexacore', 0.4159751739251152)     │ ('manufacturing', 0.2781724374027893) │ ('solar', 0.30439171330661163)            │ ('sostenible', 0.22709545160205374)     │ ('publican', 0.5284637717714373)       │ ('reglamento', 0.5130986161699874)   │ ('calendario', 0.512987802525737)       │
╘════╧═════════════════════════════════════╧═══════════════════════════════════╧══════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════════════╧═════════════════════════════════════════╧════════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════════╛


Company 'Bancosabadell'
-----------------------
╒════╤══════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════╤═══════════════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════╕
│    │ 0                                    │ 1                                     │ 2                                 │ 3                                             │ 4                                     │ 5                                     │ 6                                    │ 7                                    │ 8                                   │
╞════╪══════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════╪═══════════════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════╡
│  0 │ ('mujeres', 0.28796831148451146)     │ ('bstartup', 0.4044622601661026)      │ ('renting', 0.5655763916993923)   │ ('marruecos', 0.4634641836322686)             │ ('ansiedad', 0.6060362787450916)      │ ('arte', 0.7773306125989023)          │ ('alimentos', 0.658713189192161)     │ ('maternidad', 0.8756484522006855)   │ ('youtube', 1.1472821557876187)     │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  1 │ ('jazz', 0.2699031894505378)         │ ('startups', 0.37268550481501617)     │ ('vehículos', 0.4868548911365409) │ ('empresas', 0.4127457414949113)              │ ('fármacos', 0.5268042458438185)      │ ('fotolibros', 0.5656211412097151)    │ ('sostenibles', 0.577099182025769)   │ ('reproducción', 0.7747515843392655) │ ('watch', 1.0721672500311243)       │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  2 │ ('trailwalker', 0.24917296996245744) │ ('venture', 0.2883228419848112)       │ ('viajes', 0.4868548911365409)    │ ('exportar', 0.40916946404019766)             │ ('miedo', 0.5268042458438185)         │ ('fotolibro', 0.4889921772117755)     │ ('fruitbull', 0.55290472668198)      │ ('embarazos', 0.6964279365981217)    │ ('resolución', 0.9831393437625636)  │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  3 │ ('oxfam', 0.2485190616779191)        │ ('innovación', 0.2736247830040653)    │ ('hoteles', 0.40177713094276624)  │ ('marroquí', 0.3810204692764147)              │ ('estrés', 0.5147458519884314)        │ ('pintura', 0.4395574270153324)       │ ('ecológicos', 0.49153153674256284)  │ ('paternidad', 0.5964776695328101)   │ ('vídeo', 0.9600197860836424)       │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  4 │ ('banco', 0.2411448149589399)        │ ('financiación', 0.2726570445589745)  │ ('movilidad', 0.3929234982832317) │ ('madrileñas', 0.3810204692764147)            │ ('gate2brain', 0.5041989786401001)    │ ('galerías', 0.4395574270153324)      │ ('proteínas', 0.49153153674256284)   │ ('bebé', 0.5964776695328101)         │ ('versión', 0.8332062637295405)     │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  5 │ ('festival', 0.2367393465557525)     │ ('millennials', 0.25683083481179975)  │ ('servicios', 0.356981556483676)  │ ('españolas', 0.3277186670834644)             │ ('enfermedad', 0.4863930159927923)    │ ('exposiciones', 0.4395574270153324)  │ ('ingredientes', 0.4685843206660991) │ ('embarazo', 0.5686310290949176)     │ ('http', 0.8314015228841367)        │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  6 │ ('vijazz', 0.21917804544833544)      │ ('dreamers', 0.25122890507870405)     │ ('hotel', 0.3419793607067336)     │ ('internacionalización', 0.31951806464973276) │ ('cerebrales', 0.48090428139692765)   │ ('museo', 0.4234796477172596)         │ ('agricolum', 0.4685843206660991)    │ ('doppli', 0.5312244740978752)       │ ('foto', 0.7581367330631406)        │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  7 │ ('vilafranca', 0.2130027732359101)   │ ('emprendedores', 0.2473592768553131) │ ('tarjeta', 0.32151522915198194)  │ ('exportador', 0.31591948454551577)           │ ('ictus', 0.4602685901204138)         │ ('fotografía', 0.4234796477172596)    │ ('ecosistema', 0.4514448189146155)   │ ('embrionarias', 0.4516672134643738) │ ('rsbru0w4azw', 0.6618209913356053) │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  8 │ ('madrid', 0.20500851527647412)      │ ('economía', 0.23989767518221392)     │ ('carga', 0.2914063775646549)     │ ('países', 0.30816725691733543)               │ ('brain20', 0.45543409956111397)      │ ('inclusividad', 0.37647282068071314) │ ('foodtech', 0.4514448189146155)     │ ('embarazadas', 0.4516672134643738)  │ ('lflwsd', 0.6618209913356053)      │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────┼───────────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┤
│  9 │ ('mundo', 0.20068972339618385)       │ ('business', 0.23757044522252369)     │ ('viajero', 0.2914063775646549)   │ ('exporta', 0.30436403482197705)              │ ('sentimientos', 0.40939190912951723) │ ('colección', 0.37647282068071314)    │ ('innovación', 0.4152926180280935)   │ ('embrionaria', 0.4516672134643738)  │ ('ucf5fpjonou', 0.6618209913356053) │
╘════╧══════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════╧═══════════════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════╛


Company 'Cellnex'
-----------------
╒════╤════════════════════════════════════════╤═════════════════════════════════════════════╤════════════════════════════════════════╤════════════════════════════════════╤═══════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════╕
│    │ 0                                      │ 1                                           │ 2                                      │ 3                                  │ 4                                     │ 5                                       │ 6                                    │ 7                                       │ 8                                    │
╞════╪════════════════════════════════════════╪═════════════════════════════════════════════╪════════════════════════════════════════╪════════════════════════════════════╪═══════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════╡
│  0 │ ('bonos', 0.32009463783383835)         │ ('redes', 0.5031493292938428)               │ ('hbbtv', 0.4055147236349493)          │ ('portugal', 0.6157556823831606)   │ ('inversión', 0.5902165653040652)     │ ('eurostoxx', 1.111762809649012)        │ ('inclusivo', 0.7466244153118143)    │ ('ethics', 1.2037598463868928)          │ ('años', 0.7172302819284336)         │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  1 │ ('torres', 0.3114971997819153)         │ ('servicios', 0.4821922248731417)           │ ('radiodifusores', 0.3651045092706888) │ ('suiza', 0.5797033321885455)      │ ('400', 0.5675354983300762)           │ ('ibex35', 1.102023150251545)           │ ('eficiente', 0.6793091969559414)    │ ('standard', 1.1936351282838022)        │ ('períodos', 0.7098607806809432)     │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  2 │ ('accionistas', 0.3023514599911786)    │ ('seguridad', 0.45427620227947124)          │ ('radio', 0.34500660242176606)         │ ('polonia', 0.5355250563015328)    │ ('600', 0.5347668361333512)           │ ('española', 1.065949879974813)         │ ('tecnológica', 0.670712349364173)   │ ('carbon', 1.156515659652541)           │ ('cerrará', 0.6327813381200017)      │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  3 │ ('criteriacaixa', 0.29926799030702594) │ ('internet', 0.4538811291888596)            │ ('lovestv', 0.3388217293799826)        │ ('italia', 0.5312317468278352)     │ ('500', 0.5227924886708335)           │ ('mercado', 0.8619799944724583)         │ ('generación', 0.6626214996738613)   │ ('ftse4good', 1.156515659652541)        │ ('contratos', 0.629785424284421)     │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  4 │ ('capital', 0.29818009377221216)       │ ('cities', 0.4482156356249396)              │ ('audiovisuales', 0.32533444126432104) │ ('dinamarca', 0.48661636059670543) │ ('250', 0.5104546724140492)           │ ('600', 0.78847807796244)               │ ('innovación', 0.6343158593689943)   │ ('disclosure', 1.156515659652541)       │ ('fecha', 0.5901543493129)           │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  5 │ ('euros', 0.2844715781224528)          │ ('infraestructuras', 0.4348012293530446)    │ ('audiovisual', 0.3245791161440979)    │ ('países', 0.4847078672860474)     │ ('millones', 0.5012909227266403)      │ ('ibex', 0.3433583924086012)            │ ('5g', 0.6242462074687316)           │ ('cdp', 1.1427037256814263)             │ ('excepciones', 0.5066083204971101)  │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  6 │ ('millones', 0.27743748792677525)      │ ('audiovisual', 0.3904324873077378)         │ ('televisores', 0.3101296093904902)    │ ('austria', 0.4803836844970453)    │ ('100', 0.4833225085586516)           │ ('institucionales', 0.3192510407267305) │ ('conectividad', 0.6169448366295666) │ ('sostenibilidad', 1.1396896629908193)  │ ('lock', 0.5066083204971101)         │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  7 │ ('pension', 0.2708099815759267)        │ ('telecomunicaciones', 0.35995928784237713) │ ('t2', 0.30172890625341975)            │ ('suecia', 0.46133767491788663)    │ ('euros', 0.4713643503319916)         │ ('europe', 0.3192510407267305)          │ ('crecimiento', 0.5708222099298855)  │ ('sustainalytics', 1.1072980088592421)  │ ('plazo', 0.4790155727016889)        │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  8 │ ('telecom', 0.27034360799371665)       │ ('conectividad', 0.32342669762096027)       │ ('madrid', 0.30147512639345236)        │ ('varsovia', 0.41621221647840284)  │ ('transacciones', 0.4167844947446536) │ ('cualificados', 0.3192510407267305)    │ ('4g', 0.5369197294103137)           │ ('sustainaylitics', 0.3900149148017538) │ ('periodo', 0.46193523560562527)     │
├────┼────────────────────────────────────────┼─────────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┤
│  9 │ ('adquisición', 0.25575444081784304)   │ ('comunicaciones', 0.31504380194425075)     │ ('telecom', 0.28540543281248165)       │ ('poland', 0.3715551903788664)     │ ('000', 0.3879748643059473)           │ ('empresariales', 0.3192510407267305)   │ ('rentabilidad', 0.4384973909511515) │ ('ycdp', 0.3900149148017538)            │ ('prorrogable', 0.45300506795534784) │
╘════╧════════════════════════════════════════╧═════════════════════════════════════════════╧════════════════════════════════════════╧════════════════════════════════════╧═══════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════╛


Company 'Fluidra'
-----------------
╒════╤══════════════════════════════════════╤═══════════════════════════════════════╤═════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════════╤══════════════════════════════════════╕
│    │ 0                                    │ 1                                     │ 2                                   │ 3                                    │ 4                                    │ 5                                   │ 6                                    │ 7                                        │ 8                                    │
╞════╪══════════════════════════════════════╪═══════════════════════════════════════╪═════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════════╪══════════════════════════════════════╡
│  0 │ ('europa', 0.4425510854046503)       │ ('piscinas', 0.46841943413075265)     │ ('deuda', 0.4764165713032296)       │ ('fabtronics', 0.48627276721339546)  │ ('española', 0.6498093183682165)     │ ('clientes', 0.6111577815581383)    │ ('eloi', 0.8044559524516842)         │ ('sostenibilidad', 0.6384322970053734)   │ ('australianos', 0.6551151442352714) │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  1 │ ('crecimiento', 0.38816357905171617) │ ('wellness', 0.4474969547621267)      │ ('euros', 0.4459528163819456)       │ ('fabricación', 0.45411899805362516) │ ('multinacional', 0.616463247253516) │ ('necesidades', 0.485029287183259)  │ ('planes', 0.7656496080604183)       │ ('medioambientales', 0.5636562345182744) │ ('dólares', 0.6357014127164529)      │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  2 │ ('ventas', 0.372447106013997)        │ ('piscina', 0.4110429983667154)       │ ('2019', 0.4080495113072849)        │ ('innovación', 0.4501856048919761)   │ ('aplicaciones', 0.5588399332771353) │ ('equipo', 0.4321538117146862)      │ ('ejecutivo', 0.7552797080651141)    │ ('sociales', 0.5117474980477569)         │ ('millones', 0.5081001569915121)     │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  3 │ ('trimestre', 0.360171025231827)     │ ('swim', 0.32725566209178963)         │ ('recurrentes', 0.381708506330292)  │ ('cmp', 0.4108315485882124)          │ ('sostenible', 0.5033228075151602)   │ ('accionistas', 0.4241875871298103) │ ('presidente', 0.7367864014615092)   │ ('gobernanza', 0.5117474980477569)       │ ('compra', 0.4530723373145178)       │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  4 │ ('cambio', 0.32181504310465886)      │ ('virus', 0.3029798697289531)         │ ('monetarias', 0.37237888286379334) │ ('lab', 0.3949671371554521)          │ ('montenegro', 0.49103762048978444)  │ ('innovación', 0.41679088163725575) │ ('integración', 0.4399887804918493)  │ ('financiación', 0.4692908884932024)     │ ('euros', 0.44091893945810523)       │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  5 │ ('evolución', 0.3155354374181819)    │ ('diseño', 0.29615459766219454)       │ ('indicador', 0.37237888286379334)  │ ('tecnologías', 0.3817603521561969)  │ ('bulgaria', 0.44581654268001203)    │ ('cliente', 0.40811898332075863)    │ ('delegado', 0.4136040851887894)     │ ('arquitectura', 0.4436463249750755)     │ ('80', 0.4267177977680792)           │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  6 │ ('aumento', 0.3130822921061226)      │ ('empresa', 0.269644600458425)        │ ('préstamo', 0.37237888286379334)   │ ('pcb', 0.3733840208309968)          │ ('rumanía', 0.44581654268001203)     │ ('objetivo', 0.3973256263896076)    │ ('rentabilidad', 0.4136040851887894) │ ('responsabilidad', 0.41784008245431165) │ ('ingresos', 0.4070333325497023)     │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  7 │ ('norteamérica', 0.3047071897847833) │ ('acuático', 0.2623179733904125)      │ ('ratio', 0.365379721855784)        │ ('colaborador', 0.3733840208309968)  │ ('agua', 0.4377572489996412)         │ ('compañía', 0.3888659727694674)    │ ('sinergias', 0.3623828272892472)    │ ('sostenible', 0.378231561987802)        │ ('costes', 0.4005055729576688)       │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  8 │ ('geográficas', 0.28653927758022407) │ ('sandwell', 0.2623179733904125)      │ ('fusión', 0.3533812427939343)      │ ('m2', 0.3733840208309968)           │ ('turismo', 0.3864891797763586)      │ ('empleados', 0.37621410141453987)  │ ('industria', 0.34624094782239817)   │ ('estrategia', 0.34978703394850125)      │ ('inflación', 0.37823090487443445)   │
├────┼──────────────────────────────────────┼───────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────────┼──────────────────────────────────────┤
│  9 │ ('incremento', 0.2821198917990882)   │ ('mantenimiento', 0.2623179733904125) │ ('sinergias', 0.34204135277400277)  │ ('diseñadores', 0.3733840208309968)  │ ('waterlinx', 0.3864891797763586)    │ ('elegir', 0.37621410141453987)     │ ('explicó', 0.3379475857117794)      │ ('ecológicos', 0.34140873394563087)      │ ('gastos', 0.3572188477888632)       │
╘════╧══════════════════════════════════════╧═══════════════════════════════════════╧═════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════════╧══════════════════════════════════════╛


Company 'Indra'
---------------
╒════╤════════════════════════════════════════╤══════════════════════════════════════╤════════════════════════════════════════════╤═══════════════════════════════════════════╤═════════════════════════════════════╤═════════════════════════════════════════╤═════════════════════════════════════╤═════════════════════════════════════════╤════════════════════════════════════╕
│    │ 0                                      │ 1                                    │ 2                                          │ 3                                         │ 4                                   │ 5                                       │ 6                                   │ 7                                       │ 8                                  │
╞════╪════════════════════════════════════════╪══════════════════════════════════════╪════════════════════════════════════════════╪═══════════════════════════════════════════╪═════════════════════════════════════╪═════════════════════════════════════════╪═════════════════════════════════════╪═════════════════════════════════════════╪════════════════════════════════════╡
│  0 │ ('líder', 0.2543082378572987)          │ ('aéreo', 0.5964558969543853)        │ ('pacientes', 0.5585609657512413)          │ ('ciberseguridad', 0.7703729821245211)    │ ('colombia', 0.731575270982481)     │ ('chatbots', 0.6710730677091461)        │ ('elecciones', 0.8627905076776234)  │ ('cloud', 0.9985956919676164)           │ ('bahréin', 1.3847348638277197)    │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  1 │ ('digital', 0.2483852432430839)        │ ('aeronave', 0.5135234033823393)     │ ('clínica', 0.5362132718413052)            │ ('ataques', 0.49717287964453843)          │ ('ecuador', 0.6438850189660715)     │ ('virtuales', 0.5787703213738337)       │ ('electoral', 0.8531790833722767)   │ ('nube', 0.9338014717054497)            │ ('árabes', 0.7483276312179923)     │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  2 │ ('consultoría', 0.24651579016903669)   │ ('radar', 0.44396814010959074)       │ ('hospitales', 0.4500165898503366)         │ ('amenazas', 0.486160553435948)           │ ('perú', 0.5274112942748873)        │ ('robotización', 0.5413876436514027)    │ ('electorales', 0.7266702673208002) │ ('computing', 0.5678601582643749)       │ ('filipinas', 0.7483276312179923)  │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  3 │ ('países', 0.24219649469031082)        │ ('aeronaves', 0.40355007579708874)   │ ('interoperabilidad', 0.40120852431191306) │ ('phishing', 0.45257942255252037)         │ ('peruanos', 0.48354332543144923)   │ ('chatbot', 0.5350630164331616)         │ ('voto', 0.7058706533960698)        │ ('nubes', 0.5403181139933346)           │ ('bahrein', 0.7008581470424857)    │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  4 │ ('clientes', 0.236343053948718)        │ ('aeropuertos', 0.39651221618938776) │ ('genómica', 0.3888246062235211)           │ ('malware', 0.43945955454285324)          │ ('crédito', 0.4447890131778546)     │ ('artificial', 0.5189470626340298)      │ ('votación', 0.5736590167951889)    │ ('service', 0.5178703326458458)         │ ('hospital', 0.6415143177843537)   │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  5 │ ('innovación', 0.22889138736601425)    │ ('drones', 0.36816264686518047)      │ ('sanitario', 0.3394765661398659)          │ ('riesgos', 0.4090462454228472)           │ ('tarjetas', 0.40456635457158385)   │ ('robots', 0.4007680457798178)          │ ('electores', 0.4728788280726043)   │ ('infraestructura', 0.4796342799775977) │ ('emiratos', 0.6385256982419463)   │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  6 │ ('empresa', 0.2270730810216089)        │ ('satélites', 0.35374812305015063)   │ ('câncer', 0.33781766159742227)            │ ('ciberataques', 0.35338359772683153)     │ ('chile', 0.37929359166981286)      │ ('cliente', 0.3744583082236092)         │ ('democracy', 0.4728788280726043)   │ ('data', 0.4628843357277184)            │ ('delegación', 0.6282890951675613) │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  7 │ ('latinoamérica', 0.22171259249385286) │ ('vuelos', 0.3438556215165368)       │ ('healthcare', 0.3211480109652703)         │ ('seguridad', 0.33103213689602906)        │ ('judiciales', 0.37129732718200337) │ ('2022', 0.3635037391964408)            │ ('electivos', 0.403962240323099)    │ ('mainframe', 0.441167892688875)        │ ('mohamed', 0.5445820488720768)    │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  8 │ ('tecnológico', 0.22088161648460422)   │ ('sensores', 0.33750578324990105)    │ ('médicos', 0.31958051489972156)           │ ('vulnerabilidades', 0.32716963770543833) │ ('apps', 0.3623866184245869)        │ ('automatización', 0.36169695601059126) │ ('elections', 0.36041132228709033)  │ ('externalización', 0.4216648175288341) │ ('egipto', 0.5445820488720768)     │
├────┼────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────────────┼───────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┤
│  9 │ ('clave', 0.21895191497049876)         │ ('misión', 0.3216908971942201)       │ ('clínicos', 0.31599948722467364)          │ ('ciberataque', 0.2892483868794133)       │ ('promedio', 0.33024099534496987)   │ ('conversacional', 0.3486359603296415)  │ ('eslovenia', 0.36041132228709033)  │ ('modelos', 0.4164644319277126)         │ ('mubarak', 0.5445820488720768)    │
╘════╧════════════════════════════════════════╧══════════════════════════════════════╧════════════════════════════════════════════╧═══════════════════════════════════════════╧═════════════════════════════════════╧═════════════════════════════════════════╧═════════════════════════════════════╧═════════════════════════════════════════╧════════════════════════════════════╛


Company 'Logista'
-----------------
╒════╤═══════════════════════════════════════╤═════════════════════════════════════════╤════════════════════════════════════════╤════════════════════════════════════════╤════════════════════════════════════════╤═════════════════════════════════════╤═════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════════╕
│    │ 0                                     │ 1                                       │ 2                                      │ 3                                      │ 4                                      │ 5                                   │ 6                                   │ 7                                     │ 8                                     │
╞════╪═══════════════════════════════════════╪═════════════════════════════════════════╪════════════════════════════════════════╪════════════════════════════════════════╪════════════════════════════════════════╪═════════════════════════════════════╪═════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════════╡
│  0 │ ('servicios', 0.40755174419802165)    │ ('compañías', 0.445551442417347)        │ ('fundación', 0.5151384392479883)      │ ('temperatura', 0.47126801523352974)   │ ('euros', 0.6529807920273852)          │ ('imprimir', 1.25768149633857)      │ ('andorra', 0.8249185821351557)     │ ('distribuidor', 0.6198888216842139)  │ ('cualificados', 1.0310039170844467)  │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  1 │ ('productos', 0.38857981887609944)    │ ('climático', 0.40918133256821154)      │ ('mensajería', 0.41905897167068595)    │ ('integra2', 0.4692119397783065)       │ ('dividendo', 0.5870687223978345)      │ ('contacto', 1.2484776449889412)    │ ('flota', 0.8194451734345731)       │ ('líder', 0.5558590164470659)         │ ('equipo', 0.9996655613359501)        │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  2 │ ('comercios', 0.3868671855964552)     │ ('sostenibilidad', 0.3997791910295317)  │ ('documentación', 0.40289720469861445) │ ('pharma', 0.4003846195013751)         │ ('beneficio', 0.5766599087569809)      │ ('media', 1.1825242972455328)       │ ('plataformas', 0.7981802448817943) │ ('europeo', 0.55061216689514)         │ ('empleados', 0.9942781316648615)     │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  3 │ ('distribuidor', 0.34404708066142964) │ ('medioambiental', 0.39358053091616785) │ ('campaña', 0.3789780124244302)        │ ('farmacéutico', 0.384601103104432)    │ ('explotación', 0.5197231229003157)    │ ('descargar', 0.4907152338156902)   │ ('vehículos', 0.7516084529271743)   │ ('operadores', 0.5298992351394867)    │ ('eficiente', 0.9740543364075398)     │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  4 │ ('europa', 0.3339645523762132)        │ ('líderes', 0.37282599162150687)        │ ('solidarias', 0.3703189625358566)     │ ('farmacia', 0.3281744900975338)       │ ('económicas', 0.46266011684598257)    │ ('lectura', 0.3751080945658381)     │ ('portugal', 0.6854761590995061)    │ ('incertidumbre', 0.5016132691331643) │ ('profesionales', 0.9660144454327232) │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  5 │ ('tabaco', 0.3172391791305652)        │ ('corporativo', 0.3337421667732094)     │ ('solidarios', 0.3593528050966733)     │ ('hospitales', 0.3238698204170927)     │ ('ventas', 0.43798179322730546)        │ ('informativa', 0.3751080945658381) │ ('franquicias', 0.6846527090240673) │ ('pandemia', 0.48048620246449675)     │ ('integrado', 0.9294156406205717)     │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  6 │ ('compañía', 0.30853366371264823)     │ ('ibex', 0.32927782100766784)           │ ('solidario', 0.33880107376302054)     │ ('farmacéuticos', 0.32102187195171294) │ ('aumento', 0.42234897075753425)       │ ('código', 0.3751080945658381)      │ ('agencias', 0.5661960575774838)    │ ('logísticos', 0.48048620246449675)   │ ('colaboradores', 0.7014378375447488) │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  7 │ ('conveniencia', 0.2979229889543946)  │ ('categoría', 0.31044610683846946)      │ ('fondos', 0.3207056290591496)         │ ('capilar', 0.31823361189188903)       │ ('accionistas', 0.4097112719500182)    │ ('sms', 0.3469880694626168)         │ ('600', 0.4309412169720393)         │ ('freight', 0.4375429974794461)       │ ('clientes', 0.6647221785640384)      │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  8 │ ('mercado', 0.29441664486831476)      │ ('corporativa', 0.30052903370965084)    │ ('proyectos', 0.3207056290591496)      │ ('entrega', 0.31723726617168757)       │ ('complementario', 0.3983492694194614) │ ('email', 0.3469880694626168)       │ ('cámaras', 0.41640650711353466)    │ ('canales', 0.4375429974794461)       │ ('adaptación', 0.4713464743222566)    │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  9 │ ('loterías', 0.29171678767991804)     │ ('2022', 0.30052903370965084)           │ ('apoyo', 0.30299080684267277)         │ ('laboratorios', 0.3097181178791251)   │ ('iberia', 0.3567288344446865)         │ ('web', 0.30358492025720485)        │ ('camiones', 0.35916677435826644)   │ ('directivo', 0.4050607739635092)     │ ('600', 0.3699178183835169)           │
╘════╧═══════════════════════════════════════╧═════════════════════════════════════════╧════════════════════════════════════════╧════════════════════════════════════════╧════════════════════════════════════════╧═════════════════════════════════════╧═════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════════╛


Company 'Melia'
---------------
╒════╤════════════════════════════════════════╕
│    │ 1                                      │
╞════╪════════════════════════════════════════╡
│  0 │ ('hotel', 0.36848243798144215)         │
├────┼────────────────────────────────────────┤
│  1 │ ('hotels', 0.3633913722892623)         │
├────┼────────────────────────────────────────┤
│  2 │ ('international', 0.35040089479563863) │
├────┼────────────────────────────────────────┤
│  3 │ ('la', 0.3461435033212059)             │
├────┼────────────────────────────────────────┤
│  4 │ ('hoteles', 0.33800814527013073)       │
├────┼────────────────────────────────────────┤
│  5 │ ('compañía', 0.3171773142812143)       │
├────┼────────────────────────────────────────┤
│  6 │ ('experiencia', 0.2825192384421632)    │
├────┼────────────────────────────────────────┤
│  7 │ ('clientes', 0.2716895907156352)       │
├────┼────────────────────────────────────────┤
│  8 │ ('turismo', 0.2543451328723898)        │
├────┼────────────────────────────────────────┤
│  9 │ ('oferta', 0.2516106561435906)         │
╘════╧════════════════════════════════════════╛


Company 'Merlin'
----------------
╒════╤══════════════════════════════════════════╤════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╕
│    │ 0                                        │ 1                                  │ 2                                    │ 3                                    │ 4                                    │
╞════╪══════════════════════════════════════════╪════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╡
│  0 │ ('modificación', 1.1261553982079255)     │ ('web', 0.49629775246717217)       │ ('cookies', 1.041765656125042)       │ ('audiocast', 0.5472341414353827)    │ ('consejero', 0.4010648925463311)    │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  1 │ ('garantías', 1.1261553982079255)        │ ('datos', 0.42430669718470654)     │ ('preferencias', 0.6137309849516017) │ ('6m', 0.5315289508454326)           │ ('oficinas', 0.3999779002124425)     │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  2 │ ('generalidades', 1.1261553982079255)    │ ('usuario', 0.40678167173269375)   │ ('cookie', 0.6137309849516017)       │ ('valoración', 0.513403237782335)    │ ('miembro', 0.3966964380825019)      │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  3 │ ('licencia', 0.9849390881433916)         │ ('servicios', 0.3781360737950135)  │ ('menú', 0.5919651920329053)         │ ('memoria', 0.5032244337973111)      │ ('vocal', 0.3857626521416173)        │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  4 │ ('responsabilidades', 0.943053350096574) │ ('acceso', 0.3685614545633504)     │ ('navegación', 0.5361926027262698)   │ ('presentación', 0.5032244337973111) │ ('presidente', 0.35477317092309346)  │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  5 │ ('intelectual', 0.8817658867423543)      │ ('derechos', 0.35253871852592916)  │ ('dispositivo', 0.5315066240577321)  │ ('2022', 0.4692494049892185)         │ ('comisión', 0.3531263988759251)     │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  6 │ ('industrial', 0.8817658867423543)       │ ('personales', 0.3433259753896649) │ ('navegador', 0.5126568944566297)    │ ('financieros', 0.46788236277066175) │ ('madrid', 0.3473525959785893)       │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  7 │ ('propiedad', 0.8817658867423543)        │ ('usuarios', 0.31170560688386645)  │ ('privacidad', 0.5029173485225447)   │ ('2017', 0.459378956464254)          │ ('banco', 0.3410198980910987)        │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  8 │ ('derechos', 0.6823907603703501)         │ ('comercial', 0.31170560688386645) │ ('mac', 0.4790545205727052)          │ ('2019', 0.45922632584740214)        │ ('auditoría', 0.340680787695957)     │
├────┼──────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  9 │ ('acceso', 0.6748136980242239)           │ ('legal', 0.3108645814823527)      │ ('almacenar', 0.4790545205727052)    │ ('2020', 0.4465369937146949)         │ ('profesional', 0.33089955077926997) │
╘════╧══════════════════════════════════════════╧════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╛


Company 'Naturgy'
-----------------
╒════╤═══════════════════════════════════════╤═════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════════╤══════════════════════════════════════════╤═════════════════════════════════════╤═══════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╕
│    │ 0                                     │ 1                                   │ 2                                     │ 3                                     │ 4                                        │ 5                                   │ 6                                     │ 7                                    │ 8                                    │
╞════╪═══════════════════════════════════════╪═════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════════╪══════════════════════════════════════════╪═════════════════════════════════════╪═══════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╡
│  0 │ ('fundación', 0.2629683085523191)     │ ('natural', 0.4313798626258184)     │ ('térmica', 0.5704400907478223)       │ ('lago', 0.5078851452205009)          │ ('google', 0.6234809472760403)           │ ('gnl', 0.8696215653380855)         │ ('2022', 0.5136167190168024)          │ ('emisiones', 0.9223360198491942)    │ ('impactos', 0.8553442353613865)     │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  1 │ ('energética', 0.2588814885408986)    │ ('gas', 0.41642413418406515)        │ ('demolición', 0.5612583105433924)    │ ('biodiversidad', 0.4362849610343436) │ ('cloud', 0.5813430954143474)            │ ('bunkering', 0.637076687270387)    │ ('2021', 0.5109308985096119)          │ ('reduce', 0.629588334804672)        │ ('cambio', 0.7222068284890105)       │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  2 │ ('sostenibilidad', 0.257299068272864) │ ('grupo', 0.3389144016330919)       │ ('torre', 0.5170389774922098)         │ ('fotovoltaica', 0.4170950374720794)  │ ('telecontrol', 0.562624760499293)       │ ('puerto', 0.5241038271182371)      │ ('2014', 0.4866151680701759)          │ ('co2', 0.6117924314292337)          │ ('tendencias', 0.7138166045063375)   │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  3 │ ('ambiente', 0.2448069177288478)      │ ('valenciana', 0.3269699158173083)  │ ('torres', 0.4917988104299964)        │ ('ambiental', 0.39067406362115337)    │ ('sensorización', 0.5590660845060428)    │ ('buques', 0.5118103070663068)      │ ('2016', 0.48452682019221627)         │ ('carbono', 0.6075170905746076)      │ ('climático', 0.7127406074133334)    │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  4 │ ('renovable', 0.2250691381646713)     │ ('rosenblum', 0.3194758880809675)   │ ('trabajadores', 0.44117727336499996) │ ('planta', 0.38750734417173277)       │ ('tecnologías', 0.5501503220878334)      │ ('combustible', 0.4963416788939927) │ ('febreiro', 0.48283768104638924)     │ ('óxidos', 0.5797713723313356)       │ ('pandemia', 0.6433019000547492)     │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  5 │ ('corporativa', 0.22401159061845696)  │ ('theatre', 0.298892946847198)      │ ('agua', 0.41055628455849685)         │ ('especies', 0.3840155614426857)      │ ('digitalización', 0.5319474888611658)   │ ('ship', 0.46196188311900305)       │ ('2017', 0.44896764508615017)         │ ('motores', 0.5797713723313356)      │ ('reducciones', 0.6165517148783372)  │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  6 │ ('financiero', 0.2236216575481666)    │ ('directorship', 0.298892946847198) │ ('altura', 0.38167784877883415)       │ ('naturales', 0.3726506305377281)     │ ('optimizar', 0.5119061666952139)        │ ('puertos', 0.44324072783813584)    │ ('2020', 0.44442055579856493)         │ ('carbón', 0.5337984590106897)       │ ('prudencia', 0.6165517148783372)    │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  7 │ ('trimestrales', 0.22296699946649567) │ ('museo', 0.28343850411759147)      │ ('estructura', 0.3802491465995855)    │ ('minera', 0.3494698025031165)        │ ('online', 0.40432050636143085)          │ ('camiones', 0.4323539041197507)    │ ('calendario', 0.44240571231887743)   │ ('camión', 0.4876770271329909)       │ ('postpandemia', 0.6165517148783372) │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  8 │ ('recomendados', 0.22296699946649567) │ ('rioja', 0.2724498660276382)       │ ('caldera', 0.3734269116442227)       │ ('plantas', 0.3332181430851231)       │ ('comunicación', 0.3919414349723084)     │ ('flotante', 0.4323539041197507)    │ ('trimestrales', 0.44240571231887743) │ ('combustible', 0.48728909526941916) │ ('inevitables', 0.6165517148783372)  │
├────┼───────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┤
│  9 │ ('madrid', 0.22228926435679924)       │ ('suministro', 0.2720460662041185)  │ ('león', 0.3610853951636303)          │ ('fauna', 0.3299389697844355)         │ ('infraestructuras', 0.3653645151365464) │ ('lngonwheels', 0.4323539041197507) │ ('anuales', 0.4392129605817077)       │ ('nitrógeno', 0.44444657358292694)   │ ('volveríamos', 0.6165517148783372)  │
╘════╧═══════════════════════════════════════╧═════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════════╧══════════════════════════════════════════╧═════════════════════════════════════╧═══════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╛


Company 'Red'
-------------
╒════╤═════════════════════════════════════════╤════════════════════════════════════╤═════════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════════╤════════════════════════════════════════╤═══════════════════════════════════════╤═══════════════════════════════════════╤════════════════════════════════════════╕
│    │ 0                                       │ 1                                  │ 2                                       │ 3                                     │ 4                                     │ 5                                      │ 6                                     │ 7                                     │ 8                                      │
╞════╪═════════════════════════════════════════╪════════════════════════════════════╪═════════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════════╪════════════════════════════════════════╪═══════════════════════════════════════╪═══════════════════════════════════════╪════════════════════════════════════════╡
│  0 │ ('mujeres', 0.377722512101535)          │ ('euros', 0.46305757481768467)     │ ('energética', 0.4094148985261513)      │ ('rural', 0.47518215683474213)        │ ('fibra', 0.47284371073952763)        │ ('especies', 0.547198346468582)        │ ('5g', 0.7800101319643694)            │ ('león', 0.6516646054904379)          │ ('formación', 0.7455208088196164)      │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  1 │ ('igualdad', 0.3411671464843708)        │ ('dividendo', 0.41172080486023666) │ ('renovables', 0.3749723087449418)      │ ('pueblos', 0.4245491037552165)       │ ('óptica', 0.4362931916585435)        │ ('biodiversidad', 0.43905342798991537) │ ('inspección', 0.5798880194424465)    │ ('castilla', 0.5443111616229103)      │ ('cursos', 0.5170893956094633)         │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  2 │ ('eléctrica', 0.3195134685298967)       │ ('brasileña', 0.3606939428952297)  │ ('transición', 0.3545732289429832)      │ ('pobladores', 0.37939056983324293)   │ ('transmisión', 0.3839854979567786)   │ ('biodibal', 0.4064338139916587)       │ ('drones', 0.5054111921309093)        │ ('arroyomolinos', 0.5358767031569641) │ ('empleabilidad', 0.4965696584665467)  │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  3 │ ('pobreza', 0.3034421432221078)         │ ('poor', 0.35442524269253217)      │ ('emisiones', 0.3504200653528245)       │ ('ruralizable', 0.3614453076779244)   │ ('hyperloop', 0.3839854979567786)     │ ('invertebrados', 0.39123226511459436) │ ('conectividad', 0.44203367128880033) │ ('guadalajara', 0.5358767031569641)   │ ('habilidades', 0.4801849647928232)    │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  4 │ ('género', 0.2853740068552932)          │ ('rating', 0.3421843193326902)     │ ('2026', 0.34150617742615785)           │ ('emprendedores', 0.347349148705103)  │ ('transporte', 0.3718812627338207)    │ ('ecológica', 0.3255909782906325)      │ ('satélite', 0.4420226222656017)      │ ('valenciana', 0.4834959458676054)    │ ('empleo', 0.47621117562437204)        │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  5 │ ('administración', 0.28288085392121903) │ ('2021', 0.3364564400147281)       │ ('seguridad', 0.3341124228349137)       │ ('emprendimiento', 0.347349148705103) │ ('movilidad', 0.3702330410882967)     │ ('hábitat', 0.32453263356611295)       │ ('cámaras', 0.42157762605560845)      │ ('comunidad', 0.46727383631669905)    │ ('construcción', 0.4453441419296659)   │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  6 │ ('sociedad', 0.2645351761861393)        │ ('propuestas', 0.3338566323523751) │ ('renovable', 0.32927511922118885)      │ ('municipios', 0.341805205506324)     │ ('400', 0.35060803008235214)          │ ('fauna', 0.32453263356611295)         │ ('optimizar', 0.42157762605560845)    │ ('argentina', 0.4607879770179404)     │ ('entrenan', 0.4446332059905253)       │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  7 │ ('liderazgo', 0.25524627133597066)      │ ('trimestre', 0.3335600973135345)  │ ('planificación', 0.3134564033163268)   │ ('emprendedoras', 0.3277986447548112) │ ('transnacional', 0.3036298700230143) │ ('mamíferos', 0.32453263356611295)     │ ('robots', 0.42157762605560845)       │ ('galicia', 0.4375414959264833)       │ ('profesionales', 0.40686834072027717) │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  8 │ ('adolescentes', 0.251710439776369)     │ ('deuda', 0.3287829494989597)      │ ('eléctrica', 0.297555427047963)        │ ('ideas', 0.3109348194116088)         │ ('paralelas', 0.3036298700230143)     │ ('hábitats', 0.32453263356611295)      │ ('pilotos', 0.4048480969926505)       │ ('alcaldes', 0.4375414959264833)      │ ('formativo', 0.405447428330384)       │
├────┼─────────────────────────────────────────┼────────────────────────────────────┼─────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┼───────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────┤
│  9 │ ('corporación', 0.23452973920555079)    │ ('startups', 0.3257553812063857)   │ ('infraestructura', 0.2902042385926668) │ ('rurales', 0.30181458252303955)      │ ('aéreas', 0.3036298700230143)        │ ('conservación', 0.3148222785850514)   │ ('satélites', 0.3803693496387577)     │ ('rioja', 0.4375414959264833)         │ ('digitalización', 0.3920693819662406) │
╘════╧═════════════════════════════════════════╧════════════════════════════════════╧═════════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════════╧════════════════════════════════════════╧═══════════════════════════════════════╧═══════════════════════════════════════╧════════════════════════════════════════╛


Company 'Repsol'
----------------
╒════╤══════════════════════════════════════════╤═════════════════════════════════════╕
│    │ 0                                        │ 1                                   │
╞════╪══════════════════════════════════════════╪═════════════════════════════════════╡
│  0 │ ('gas', 0.44530413999390406)             │ ('compañía', 0.4023422447012726)    │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  1 │ ('producción', 0.43940274733189366)      │ ('sector', 0.37578500714227875)     │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  2 │ ('hidrocarburos', 0.43864280314774906)   │ ('servicio', 0.34662912667648144)   │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  3 │ ('petróleo', 0.4357160011216175)         │ ('inversores', 0.33796514782671944) │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  4 │ ('recursos', 0.42478261199563955)        │ ('ranking', 0.32857542904610776)    │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  5 │ ('barriles', 0.3859322938641054)         │ ('equipo', 0.3164276529483743)      │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  6 │ ('área', 0.37017697085403184)            │ ('presidente', 0.3110655231309947)  │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  7 │ ('rusia', 0.37017697085403184)           │ ('europa', 0.294519858261087)       │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  8 │ ('cúbicos', 0.35242414584898996)         │ ('clientes', 0.294519858261087)     │
├────┼──────────────────────────────────────────┼─────────────────────────────────────┤
│  9 │ ('descubrimientos', 0.35242414584898996) │ ('empresa', 0.28039537209395443)    │
╘════╧══════════════════════════════════════════╧═════════════════════════════════════╛


Company 'Sacyr'
---------------
╒════╤═══════════════════════════════════════════╤════════════════════════════════════════╤═════════════════════════════════════════╤═════════════════════════════════════╤═══════════════════════════════════════╤════════════════════════════════════════════╤══════════════════════════════════════════╤═══════════════════════════════════════╤══════════════════════════════════════════╕
│    │ 0                                         │ 1                                      │ 2                                       │ 3                                   │ 4                                     │ 5                                          │ 6                                        │ 7                                     │ 8                                        │
╞════╪═══════════════════════════════════════════╪════════════════════════════════════════╪═════════════════════════════════════════╪═════════════════════════════════════╪═══════════════════════════════════════╪════════════════════════════════════════════╪══════════════════════════════════════════╪═══════════════════════════════════════╪══════════════════════════════════════════╡
│  0 │ ('sostenibilidad', 0.3881108369608592)    │ ('euros', 0.45746234863664237)         │ ('emisiones', 0.5118090340452246)       │ ('km', 0.5491469471496561)          │ ('chile', 0.565518764236192)          │ ('diversidad', 0.6213097547401951)         │ ('panamá', 0.6586069314284574)           │ ('buques', 0.8784911501744355)        │ ('m2', 0.7738489488704066)               │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  1 │ ('agua', 0.3493304688355938)              │ ('millones', 0.43799560592217485)      │ ('carbono', 0.47656019832708546)        │ ('autopista', 0.4792160590819784)   │ ('colombia', 0.5177978824473832)      │ ('conciliación', 0.5987240153745327)       │ ('icc', 0.49327820111598214)             │ ('canal', 0.7727593007598352)         │ ('hospitales', 0.7343812881255869)       │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  2 │ ('innovadores', 0.31689861643992134)      │ ('deuda', 0.43144579290809765)         │ ('co2', 0.4722556595064574)             │ ('ruta', 0.4287604487267795)        │ ('latinoamérica', 0.4378812696537165) │ ('talento', 0.5752855264807871)            │ ('reclamación', 0.4852479487248607)      │ ('barcos', 0.7486875761707997)        │ ('hospitalaria', 0.6699668833321312)     │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  3 │ ('propuestas', 0.3147852032888641)        │ ('ingresos', 0.38197164320813454)      │ ('climático', 0.43503795105480075)      │ ('kilómetros', 0.41471203048892996) │ ('financiación', 0.4197951490233734)  │ ('igualdad', 0.4678778326320932)           │ ('decisión', 0.46794489271326994)        │ ('embarcaciones', 0.5846963802835943) │ ('629', 0.6699668833321312)              │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  4 │ ('sostenible', 0.2973861765050073)        │ ('negocios', 0.38192304955795653)      │ ('energía', 0.40903260854638135)        │ ('rutas', 0.38565789764536174)      │ ('perú', 0.38532918881902045)         │ ('social', 0.45704968815982067)            │ ('república', 0.4390037075487832)        │ ('panamax', 0.5846963802835943)       │ ('000', 0.5376788167789622)              │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  5 │ ('corporativo', 0.2956892111604954)       │ ('activos', 0.34976778819652815)       │ ('gas', 0.36877358106059993)            │ ('transportes', 0.3848132378772917) │ ('méxico', 0.38532918881902045)       │ ('empleo', 0.443849011974611)              │ ('seguridad', 0.41974799796780093)       │ ('transitan', 0.5846963802835943)     │ ('hospital', 0.48942504867153386)        │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  6 │ ('residuos', 0.28566291724735343)         │ ('riesgo', 0.3046343866030434)         │ ('ecológica', 0.3214471731911019)       │ ('autopistas', 0.3570498332761012)  │ ('rumichaca', 0.3517558146355748)     │ ('bienestar', 0.4301863129060846)          │ ('certificado', 0.39277756581475437)     │ ('puertos', 0.5530437348214664)       │ ('infraestructura', 0.47422232856877994) │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  7 │ ('infraestructuras', 0.26199785162669537) │ ('trimestre', 0.298919744667267)       │ ('transición', 0.3214471731911019)      │ ('túnel', 0.33616464785896166)      │ ('latinfinance', 0.3366153716115941)  │ ('inclusión', 0.41639809491010377)         │ ('confidencialidad', 0.3789601005676886) │ ('comercio', 0.5294020621004922)      │ ('inmobiliaria', 0.44255366677769514)    │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  8 │ ('2020', 0.2588674757448586)              │ ('19', 0.298919744667267)              │ ('aerogeneradores', 0.3214471731911019) │ ('tráfico', 0.32594041306463223)    │ ('latina', 0.3366153716115941)        │ ('intergeneracional', 0.41639809491010377) │ ('autoridad', 0.3789601005676886)        │ ('2017', 0.48134762966231875)         │ ('edificios', 0.44255366677769514)       │
├────┼───────────────────────────────────────────┼────────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────┼───────────────────────────────────────┼────────────────────────────────────────────┼──────────────────────────────────────────┼───────────────────────────────────────┼──────────────────────────────────────────┤
│  9 │ ('gestión', 0.25801143274185584)          │ ('concesionales', 0.29392510175074166) │ ('renovables', 0.30044290003631524)     │ ('vehículos', 0.31925628902560016)  │ ('uruguay', 0.3366153716115941)       │ ('ciudadanos', 0.38438451981463667)        │ ('arbitration', 0.3789601005676886)      │ ('gas', 0.45911004400464667)          │ ('hospitalarios', 0.44255366677769514)   │
╘════╧═══════════════════════════════════════════╧════════════════════════════════════════╧═════════════════════════════════════════╧═════════════════════════════════════╧═══════════════════════════════════════╧════════════════════════════════════════════╧══════════════════════════════════════════╧═══════════════════════════════════════╧══════════════════════════════════════════╛


Company 'Solaria'
-----------------
╒════╤═══════════════════════════════════════╤═══════════════════════════════════════╕
│    │ 0                                     │ 1                                     │
╞════╪═══════════════════════════════════════╪═══════════════════════════════════════╡
│  0 │ ('2023', 0.6155906649539744)          │ ('euros', 0.4531763932532064)         │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  1 │ ('fotovoltaicos', 0.4752846083682362) │ ('resultados', 0.3962894868257248)    │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  2 │ ('solaria', 0.46834947082666367)      │ ('solaria', 0.3860137216846334)       │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  3 │ ('solar', 0.4683175139920282)         │ ('crecimiento', 0.3785989094700868)   │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  4 │ ('estratégica', 0.4529222903948635)   │ ('compañía', 0.37679003715803827)     │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  5 │ ('contribución', 0.4529222903948635)  │ ('desarrollo', 0.3708797412125205)    │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  6 │ ('récords', 0.4529222903948635)       │ ('proyectos', 0.3686394253564031)     │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  7 │ ('330', 0.4529222903948635)           │ ('millones', 0.344408236393758)       │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  8 │ ('fotovoltaico', 0.45188797569068917) │ ('2016', 0.3258671758757545)          │
├────┼───────────────────────────────────────┼───────────────────────────────────────┤
│  9 │ ('península', 0.44854285347338263)    │ ('financiación', 0.30653046723119526) │
╘════╧═══════════════════════════════════════╧═══════════════════════════════════════╛


Company 'Telefonica'
--------------------
╒════╤═══════════════════════════════════════╤═════════════════════════════════════════╤════════════════════════════════════╤══════════════════════════════════════╤══════════════════════════════════════╤═════════════════════════════════════════╤═════════════════════════════════════════╤══════════════════════════════════════╤════════════════════════════════════╕
│    │ 0                                     │ 1                                       │ 2                                  │ 3                                    │ 4                                    │ 5                                       │ 6                                       │ 7                                    │ 8                                  │
╞════╪═══════════════════════════════════════╪═════════════════════════════════════════╪════════════════════════════════════╪══════════════════════════════════════╪══════════════════════════════════════╪═════════════════════════════════════════╪═════════════════════════════════════════╪══════════════════════════════════════╪════════════════════════════════════╡
│  0 │ ('telefónica', 0.24113018459792987)   │ ('iptv', 0.5612675652196032)            │ ('4g', 0.8528114044128975)         │ ('perú', 0.9238899552089478)         │ ('paciente', 0.9043816483374176)     │ ('lgbt', 1.1284356970514018)            │ ('oftalmología', 0.808094571595552)     │ ('snowboard', 1.1298961910749754)    │ ('ciclismo', 1.1577646827372043)   │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  1 │ ('museo', 0.2170827075989899)         │ ('internautas', 0.49670110378401655)    │ ('velocidad', 0.6204616759844629)  │ ('colombia', 0.8966914966179169)     │ ('pacientes', 0.8382518497528495)    │ ('diversidad', 0.7284106577030279)      │ ('oftalmológico', 0.7558218368452118)   │ ('esquí', 0.9064696007719119)        │ ('ciclistas', 0.9739547489201533)  │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  2 │ ('pdfdescargar', 0.21217845225845733) │ ('usuarios', 0.4822495557749384)        │ ('mbps', 0.5707681987161433)       │ ('chile', 0.8567188021659903)        │ ('cirugía', 0.6449923934910018)      │ ('empleados', 0.6747355045279539)       │ ('oftalmológica', 0.7049335184252336)   │ ('esquiadores', 0.7701173945736646)  │ ('bici', 0.8729814555617369)       │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  3 │ ('movistar', 0.2081369328703414)      │ ('televisión', 0.46502286976839496)     │ ('5g', 0.5654183152024638)         │ ('latinoamérica', 0.642387603630794) │ ('telemedicina', 0.562224991672181)  │ ('inclusivo', 0.6413649214800662)       │ ('ceguera', 0.646591110023649)          │ ('synergic', 0.6616637131224032)     │ ('bike', 0.8186223900829753)       │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  4 │ ('madrid', 0.20188986951041937)       │ ('privacidad', 0.46061573359231006)     │ ('3g', 0.5371637570662393)         │ ('venezuela', 0.5908990600157776)    │ ('médicos', 0.510164097421253)       │ ('diversity', 0.5205191978845604)       │ ('corneal', 0.646591110023649)          │ ('freestyle', 0.6322097336910273)    │ ('mujeres', 0.8142069481609643)    │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  5 │ ('digital', 0.19457309247948607)      │ ('plataformas', 0.4300679286740932)     │ ('fibra', 0.5105873809223815)      │ ('ecuador', 0.5908990600157776)      │ ('sanitario', 0.49346622500078346)   │ ('orgullo', 0.5192148786757632)         │ ('diagnóstico', 0.596263463779465)      │ ('esquiador', 0.6307952725653277)    │ ('dynamism', 0.5665466574919978)   │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  6 │ ('datos', 0.18260044573020476)        │ ('blockchain', 0.4159569177640372)      │ ('móvil', 0.4560048520419635)      │ ('argentina', 0.505718712814919)     │ ('dr', 0.44852629526776355)          │ ('discriminación', 0.4559597318383206)  │ ('oftalmólogos', 0.5774038270381471)    │ ('invierno', 0.5694734740880619)     │ ('bicicletas', 0.5445272416857333) │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  7 │ ('millones', 0.17766653894239745)     │ ('ciberseguridad', 0.3685218360121695)  │ ('tecnología', 0.3721671588677398) │ ('uruguay', 0.4878201998975714)      │ ('hospital', 0.436108749014705)      │ ('homófobo', 0.4559597318383206)        │ ('oculares', 0.5774038270381471)        │ ('snowboarders', 0.5358692919038183) │ ('ciclista', 0.4946512730853252)   │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  8 │ ('proyecto', 0.1767570524691147)      │ ('virtualización', 0.31950514271576264) │ ('wifi', 0.3656088154805924)       │ ('guatemala', 0.4805210247215602)    │ ('color', 0.4357761477719781)        │ ('discriminatorio', 0.4559597318383206) │ ('visión', 0.52606989929769)            │ ('boardercross', 0.5358692919038183) │ ('vehículos', 0.49338564006100705) │
├────┼───────────────────────────────────────┼─────────────────────────────────────────┼────────────────────────────────────┼──────────────────────────────────────┼──────────────────────────────────────┼─────────────────────────────────────────┼─────────────────────────────────────────┼──────────────────────────────────────┼────────────────────────────────────┤
│  9 │ ('información', 0.17632606230798117)  │ ('antivirus', 0.3142144597332071)       │ ('256mb', 0.3647726177521312)      │ ('peruanos', 0.42296805825910344)    │ ('recuperación', 0.4357761477719781) │ ('racista', 0.4559597318383206)         │ ('oftalmológicas', 0.49051252188235533) │ ('olímpico', 0.5291694748363961)     │ ('comunidad', 0.4497416375678606)  │
╘════╧═══════════════════════════════════════╧═════════════════════════════════════════╧════════════════════════════════════╧══════════════════════════════════════╧══════════════════════════════════════╧═════════════════════════════════════════╧═════════════════════════════════════════╧══════════════════════════════════════╧════════════════════════════════════╛

Bar Plots of Topics¶

I do not think this is especially useful, since it is just a graphical representation of the table above. However, we can also produce these types of plots, for the sake of comparison. Below I show the example of Inditex. All the other plots are in the folder results/topics/figures.

In [10]:
model_en = BERTopic.load("models/Inditex_en.bert")
model_es = BERTopic.load("models/Inditex_es.bert")
fig = model_en.visualize_barchart(n_words=5, top_n_topics=10)
fig
In [11]:
fig = model_es.visualize_barchart(n_words=5, top_n_topics=10)
fig

Auxiliary Code (ignore this part)¶

In [ ]:
# generation of different views of topics

for i, company in enumerate(companies):
    model_en = BERTopic.load(f"models/{company}_en.bert")
    model_es = BERTopic.load(f"models/{company}_es.bert")
    
    # compute topics similarity (match best topics and compute distances)
    M = cosine_similarity(model_en.topic_embeddings_[1:], model_es.topic_embeddings_[1:])
    idx = np.argmax(M, axis=1).tolist() # best match for each english topic
    dfE = pd.DataFrame(model_en.get_topic_info()[1:]).rename(columns={'Name' : 'Name EN'})
    dfS = pd.DataFrame(model_es.get_topic_info().loc[[i+1 for i in idx]]).reset_index().rename(columns={'Name':'Best Match ES'})
    dfMatch = pd.concat([dfE.reset_index(),dfS.reset_index() , pd.DataFrame(M.max(axis=1))], axis=1).rename(columns={0:'similarity'}).drop(columns={'index', 'level_0'})
    print(f"Total similarity score for company '{company}' = {dfMatch.similarity.mean():.3f}")
    dfMatch.to_excel(f"results/topics/topics_match_{company}.xlsx", index=False)
    
    # generate topic details (top 10 words for each topic)
    df_en = pd.DataFrame(model_en.get_topics()).iloc[:,1:]
    df_es = pd.DataFrame(model_es.get_topics())[idx]
    cols = ["topic_" + str(i) for i in range(dfMatch.shape[0])]
    df_en.columns=cols
    df_es.columns=cols
    pd.concat([df_en, df_es], axis=0).reset_index().to_excel(f"results/topics/topics_details_{company}.xlsx", index=False)
    
    # generate bar charts for each topic
    fig = model_en.visualize_barchart(n_words=5, top_n_topics=10)
    fig.write_html(f"results/topics/figures/barplot_{company}_en.html")
    fig = model_es.visualize_barchart(n_words=5, top_n_topics=10)
    fig.write_html(f"results/topics/figures/barplot_{company}_es.html")